mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-04 08:57:15 +08:00
32 lines
977 B
Bash
32 lines
977 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>
|
|
|
|
# include global config
|
|
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
|
|
|
pkgname=quilt
|
|
pkgver=0.48
|
|
pkgrel=2
|
|
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=('GPL')
|
|
depends=('perl' 'diffstat' 'gawk' 'patch' 'diffutils' 'gettext')
|
|
source=(http://savannah.nongnu.org/download/quilt/${pkgname}-${pkgver}.tar.gz)
|
|
md5sums=('f77adda60039ffa753f3c584a286f12b')
|
|
|
|
build() {
|
|
cd ${startdir}/src/${pkgname}-${pkgver}
|
|
./configure --prefix=/usr --mandir=/usr/share/man || return 1
|
|
make || return 1
|
|
}
|
|
|
|
package() {
|
|
cd ${startdir}/src/${pkgname}-${pkgver}
|
|
make prefix=${startdir}/pkg/usr mandir=${startdir}/pkg/usr/share/man install || return 1
|
|
}
|
|
|