diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2009-07-24 08:01:31 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2009-07-24 08:01:31 +0000 |
commit | b70981b68efcce5256eb11c6cd26ae123b10b6ea (patch) | |
tree | a38be6efae5e2ba15c2e839504632f9b7bfd5f91 /main/sfic/APKBUILD | |
parent | 2b4df81538b8398442d5296650905c70341dd8d3 (diff) | |
download | aports-b70981b68efcce5256eb11c6cd26ae123b10b6ea.tar.bz2 aports-b70981b68efcce5256eb11c6cd26ae123b10b6ea.tar.xz |
moved extra/* to main/
and fixed misc build issues
Diffstat (limited to 'main/sfic/APKBUILD')
-rw-r--r-- | main/sfic/APKBUILD | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/main/sfic/APKBUILD b/main/sfic/APKBUILD new file mode 100644 index 000000000..3f781b4de --- /dev/null +++ b/main/sfic/APKBUILD @@ -0,0 +1,29 @@ +pkgdesc="Small and Simple File Integrity Checker" +pkgname=sfic +pkgver=0.1.7 +pkgrel=1 +depends=uclibc +license=GPL +makedepends="autoconf automake samba-dev" +depends="tdb uclibc" +arch=i486 +url=http://sfic.sourceforge.net +source="http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz + $pkgname-0.1.7-signal.patch" + +subpackages="$pkgname-doc" + +build() { + cd $srcdir/$pkgname-$pkgver + patch -p1 < ../$pkgname-0.1.7-signal.patch || return 1 + + aclocal + autoconf + automake --add-missing || return 1 + ./configure --prefix=/usr + make || return 1 + make install DESTDIR="$pkgdir" +} + +md5sums="6197f7a1e8b0fc4887d4573f67b7bb81 sfic-0.1.7.tar.gz +e0c284f8b4e355b3ea52927fb02e163a sfic-0.1.7-signal.patch" |