mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-04 18:37:12 +08:00
29 lines
809 B
Bash
29 lines
809 B
Bash
#
|
|
# Platform 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=quilt
|
|
pkgver=0.50
|
|
pkgrel=1
|
|
pkgdesc='Manage a series of patches by keeping track of the changes each patch makes'
|
|
arch=('i686' 'x86_64')
|
|
url='http://savannah.nongnu.org/projects/quilt'
|
|
license=('GPL2')
|
|
depends=('diffstat' 'gawk' 'patch' 'diffutils' 'gettext')
|
|
source=("http://savannah.nongnu.org/download/quilt/${pkgname}-${pkgver}.tar.gz")
|
|
md5sums=('ff5e1e041363c3af3c8fda4b968c9d1d')
|
|
|
|
build() {
|
|
cd ${pkgname}-${pkgver}
|
|
./configure --prefix=/usr --mandir=/usr/share/man
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd ${pkgname}-${pkgver}
|
|
make prefix="$pkgdir/usr" mandir="$pkgdir/usr/share/man" install
|
|
}
|
|
|