blob: 8fd1df563381442f9bf744b1f4cae11a67fb7ba9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=xdelta3
pkgver=3.0.6
pkgrel=0
pkgdesc="A diff utility which works with binary files"
url="http://xdelta.org/"
arch="all"
license="GPL"
depends=
makedepends=
source="http://xdelta.googlecode.com/files/$pkgname-$pkgver.tar.gz"
build() {
cd $srcdir/$pkgname-$pkgver
./configure \
--build=$CBUILD \
--host=$CHOST \
--prefix=/usr \
|| return 1
make
}
package() {
cd $srcdir/$pkgname-$pkgver
make DESTDIR="${pkgdir}" install
}
md5sums="652048ab4a7e5f927bce045228a17b31 xdelta3-3.0.6.tar.gz"
|