mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 10:32:13 +08:00
25 lines
492 B
Bash
25 lines
492 B
Bash
pkgname=patchutils
|
|
pkgver=0.3.3
|
|
pkgrel=1
|
|
pkgdesc="A small collection of programs that operate on patch files"
|
|
license=('GPL')
|
|
url="http://cyberelk.net/tim/patchutils/"
|
|
depends=('perl')
|
|
arch=('x86_64')
|
|
source=(http://cyberelk.net/tim/data/patchutils/stable/$pkgname-$pkgver.tar.xz)
|
|
sha1sums=('89d3f8a454bacede1b9a112b3a13701ed876fcc1')
|
|
|
|
build() {
|
|
cd $srcdir/$pkgname-$pkgver
|
|
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd $srcdir/$pkgname-$pkgver
|
|
|
|
make DESTDIR=$pkgdir install
|
|
}
|
|
|