diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2018-06-12 11:19:00 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2018-06-12 11:19:00 +0000 |
commit | 370a4776ca67151a276ecdbb4ebd50075b8fe68b (patch) | |
tree | 6ede64c077377835a80572c357d89095e1443f74 /community/lmdb/APKBUILD | |
parent | 5f4db4fef37e9d401ee8f69ef812102db4a5ee7c (diff) | |
download | aports-370a4776ca67151a276ecdbb4ebd50075b8fe68b.tar.bz2 aports-370a4776ca67151a276ecdbb4ebd50075b8fe68b.tar.xz |
main/lmdb: move from community due to postfix
Diffstat (limited to 'community/lmdb/APKBUILD')
-rw-r--r-- | community/lmdb/APKBUILD | 51 |
1 files changed, 0 insertions, 51 deletions
diff --git a/community/lmdb/APKBUILD b/community/lmdb/APKBUILD deleted file mode 100644 index 71698bcffd..0000000000 --- a/community/lmdb/APKBUILD +++ /dev/null @@ -1,51 +0,0 @@ -# Contributor: Olivier Mauras <olivier@mauras.ch> -# Maintainer: Natanael Copa <ncopa@alpinelinux.org> -pkgname=lmdb -pkgver=0.9.22 -pkgrel=1 -pkgdesc="Lightning Memory-Mapped Database" -url="http://symas.com/mdb" -arch="all" -license="OLDAP-2.8" -subpackages="$pkgname-dev $pkgname-doc $pkgname-tools" -source="https://github.com/LMDB/lmdb/archive/LMDB_$pkgver.tar.gz - lmdb-make.patch" -builddir="$srcdir/$pkgname-LMDB_$pkgver/libraries/liblmdb" - -build() { - cd "$builddir" - make CFLAGS+="-fPIC" -} - -check() { - cd "$builddir" - LD_LIBRARY_PATH="$PWD" make test -} - -package() { - cd "$builddir" - make DESTDIR="$pkgdir" prefix=/usr install - - mkdir -p "$pkgdir"/usr/lib/pkgconfig - cat >"$pkgdir"/usr/lib/pkgconfig/lmdb.pc <<-EOF - prefix=/usr - exec_prefix=\${prefix} - libdir=\${exec_prefix}/lib - includedir=\${prefix}/include - - Name: liblmdb - Description: Lightning Memory-mapped key-value database - URL: http://symas.com/mdb/ - Version: @PACKAGE_VERSION@ - Libs: -L\${libdir} -llmdb - Cflags: -I\${includedir} - EOF -} - -tools() { - mkdir -p "$subpkgdir"/usr - mv "$pkgdir"/usr/bin "$subpkgdir"/usr -} - -sha512sums="49afca13b9683ed571c274380bb5e111236903b12d19bcb8781d6bbc00f711766b0d62de0b36536c85309cc9ff9e9d0aaa708e27bae9be6cfcaed8ba91e5545d LMDB_0.9.22.tar.gz -1ae28e850a32694f81cb7bf4abaab9cd96ef6c963de91f96810de3afee4da41102e310a6fb0ed889e9e9e04e00342f25272c04a8b483615dccfc039e34538594 lmdb-make.patch" |