mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-02-14 04:12:25 +01:00
35 lines
729 B
Plaintext
35 lines
729 B
Plaintext
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=libowfat
|
|
pkgver=0.28
|
|
pkgrel=1
|
|
pkgdesc="reimplementation of libdjb"
|
|
url="http://www.fefe.de/libowfat/"
|
|
arch="all"
|
|
license="GPL"
|
|
depends=
|
|
makedepends=
|
|
install=
|
|
subpackages="$pkgname-dev $pkgname-doc"
|
|
source="http://dl.fefe.de/libowfat-$pkgver.tar.bz2"
|
|
|
|
_builddir="$srcdir"/$pkgname-$pkgver
|
|
|
|
prepare() {
|
|
cd "$_builddir"
|
|
}
|
|
|
|
build() {
|
|
cd "$_builddir"
|
|
make || return 1
|
|
}
|
|
|
|
package() {
|
|
cd "$_builddir"
|
|
make prefix="$pkgdir"/usr MAN3DIR="$pkgdir"/usr/share/man/man3 install
|
|
# buffer manpage conflicts with openssl
|
|
mv "$pkgdir"/usr/share/man/man3/buffer.3 \
|
|
"$pkgdir"/usr/share/man/man3/owfatbuffer.3
|
|
}
|
|
|
|
md5sums="6bbee9a86506419657d87123b7a6f2c1 libowfat-0.28.tar.bz2"
|