summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 2f5c2ad19d89e273adc697534277252fd76f7f6a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Maintainer: haliax
pkgname=fcount
pkgver=0.3
pkgrel=1
pkgdesc="Counts the number of files in a directory"
arch=('i686' 'x86_64')
url="http://git.z3bra.org/cgit.cgi/fcount"
license=('WTFPL')
source=("http://git.z3bra.org/cgit.cgi/$pkgname/snapshot/$pkgname-$pkgver.tar.bz2")
md5sums=('b5ad91c216eb3d0eddc9db7bf2e7ccb7')

build() {
  cd "$pkgname-$pkgver"
  make
}

package() {
  cd "$pkgname-$pkgver"
  install -D -m0755 fcount $pkgdir/usr/bin/fcount
}