mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-12-25 19:32:44 +01:00
51 lines
1.3 KiB
Plaintext
51 lines
1.3 KiB
Plaintext
# Contributor: Natanael Copa <ncopa@alpinelinux.org>
|
|
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=patchutils
|
|
pkgver=0.3.3
|
|
pkgrel=0
|
|
pkgdesc="A collection of programs for manipulating patch files"
|
|
url="http://cyberelk.net/tim/patchutils/"
|
|
arch="all"
|
|
license="GPLv2+"
|
|
depends=""
|
|
depends_dev=""
|
|
makedepends="$depends_dev"
|
|
install=""
|
|
subpackages="$pkgname-doc"
|
|
source="http://cyberelk.net/tim/data/patchutils/stable/patchutils-$pkgver.tar.xz"
|
|
|
|
_builddir="$srcdir"/patchutils-$pkgver
|
|
prepare() {
|
|
local i
|
|
cd "$_builddir"
|
|
for i in $source; do
|
|
case $i in
|
|
*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
|
|
esac
|
|
done
|
|
}
|
|
|
|
build() {
|
|
cd "$_builddir"
|
|
./configure \
|
|
--build=$CBUILD \
|
|
--host=$CHOST \
|
|
--prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--mandir=/usr/share/man \
|
|
--infodir=/usr/share/info \
|
|
--localstatedir=/var \
|
|
|| return 1
|
|
make || return 1
|
|
}
|
|
|
|
package() {
|
|
cd "$_builddir"
|
|
make DESTDIR="$pkgdir" install || return 1
|
|
rm -f "$pkgdir"/usr/lib/*.la
|
|
}
|
|
|
|
md5sums="b640b6b8af6183f83eacf7bd6d2460cb patchutils-0.3.3.tar.xz"
|
|
sha256sums="91f4e8451b2efcac5d40c966e42c175803450f0de94c926bfecc12c90070ad3c patchutils-0.3.3.tar.xz"
|
|
sha512sums="4ec085078e9ae2e878dc10fbfea5974d9772716aef5d8e130a0023ceaa26640bccfaf1022c8153923b38230b36c8d4dddf4aaa674076c733bb1277895b63a268 patchutils-0.3.3.tar.xz"
|