diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2010-07-29 12:29:52 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2010-07-29 12:29:52 +0000 |
commit | 648eefa83c7189822581aca994a967b7747a790d (patch) | |
tree | f622f73774850215fa2c15a133a77be7b37ba4d4 /testing | |
parent | b967bcc2298dadd6d7a81132505a283c46c9ec44 (diff) | |
download | aports-648eefa83c7189822581aca994a967b7747a790d.tar.bz2 aports-648eefa83c7189822581aca994a967b7747a790d.tar.xz |
main/cmph: moved from testing
Diffstat (limited to 'testing')
-rw-r--r-- | testing/cmph/APKBUILD | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/testing/cmph/APKBUILD b/testing/cmph/APKBUILD deleted file mode 100644 index a52b0bcf13..0000000000 --- a/testing/cmph/APKBUILD +++ /dev/null @@ -1,40 +0,0 @@ -# Contributor: -# Maintainer: -pkgname=cmph -pkgver=0.9 -pkgrel=0 -pkgdesc="minimal perfect hash C library - utility application" -url="http://cmph.sourceforge.net/" -license="LGPL MPL-1.1" -depends= -makedepends= -install= -subpackages="$pkgname-dev $pkgname-doc libcmph:lib" -source="http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz" - -_builddir="$srcdir"/$pkgname-$pkgver -prepare() { - cd "$_builddir" -} - -build() { - cd "$_builddir" - ./configure --prefix=/usr \ - --sysconfdir=/etc \ - --mandir=/usr/share/man \ - --infodir=/usr/share/info - make || return 1 -} - -package() { - cd "$_builddir" - make DESTDIR="$pkgdir" install -} - -lib() { - pkgdesc="minimal perfect hash C library - utility application" - mkdir -p "$subpkgdir"/usr/lib - mv "$pkgdir"/usr/lib/libcmph*.so.* "$subpkgdir"/usr/lib/ -} - -md5sums="14c17e3058174e9333936caa8e18ed28 cmph-0.9.tar.gz" |