mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-02-12 11:21:50 +01:00
43 lines
942 B
Plaintext
43 lines
942 B
Plaintext
# Contributor: Duane Hughes <duanejevon@gmail.com>
|
|
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=liblockfile
|
|
pkgver=1.08
|
|
pkgrel=1
|
|
pkgdesc="Shared library with NFS-safe locking functions"
|
|
url="http://packages.debian.org/sid/liblockfile1"
|
|
arch="all"
|
|
license="GPL"
|
|
depends=""
|
|
makedepends=
|
|
install=
|
|
subpackages="$pkgname-dev $pkgname-doc"
|
|
source="http://ftp.debian.org/debian/pool/main/libl/liblockfile/${pkgname}_$pkgver.orig.tar.gz"
|
|
|
|
_builddir="$srcdir"/$pkgname-$pkgver
|
|
|
|
|
|
build() {
|
|
cd "$_builddir"
|
|
./configure \
|
|
--build=$CBUILD \
|
|
--host=$CHOST \
|
|
--prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--mandir=/usr/share/man \
|
|
|| return 1
|
|
make -j1 || return 1
|
|
}
|
|
|
|
package() {
|
|
cd "$_builddir"
|
|
|
|
install -d "$pkgdir"/usr/include
|
|
install -d "$pkgdir"/usr/bin
|
|
install -d "$pkgdir"/usr/lib
|
|
install -d "$pkgdir"/usr/share/man
|
|
|
|
make -j1 ROOT="$pkgdir" install
|
|
}
|
|
|
|
md5sums="c24e2dfb4a2aab0263fe5ac1564d305e liblockfile_1.08.orig.tar.gz"
|