mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-01-26 14:52:11 +08:00
24 lines
682 B
Bash
24 lines
682 B
Bash
#
|
|
# Chakra Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer (i686): Phil Miller <philm[at]chakra-project[dog]org>
|
|
# maintainer (x86_64): Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
|
|
|
|
pkgname=patchutils
|
|
pkgver=0.3.1
|
|
pkgrel=1
|
|
pkgdesc="A small collection of programs that operate on patch files"
|
|
license=('GPL')
|
|
url="http://cyberelk.net/tim/patchutils/"
|
|
depends=('perl')
|
|
arch=('i686' 'x86_64')
|
|
source=(http://cyberelk.net/tim/data/patchutils/stable/$pkgname-$pkgver.tar.bz2)
|
|
|
|
build() {
|
|
cd $startdir/src/$pkgname-$pkgver
|
|
./configure --prefix=/usr
|
|
make || return 1
|
|
make DESTDIR=$startdir/pkg install
|
|
}
|
|
md5sums=('3fd9bca58a429fbbb1c2126f1b72aa23')
|