mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-04 06:37:15 +08:00
32 lines
710 B
Bash
32 lines
710 B
Bash
# Platform Packages for Chakra, part of chakra-project.org
|
|
|
|
pkgname=perl-extutils-pkgconfig
|
|
_realname=ExtUtils-PkgConfig
|
|
pkgver=1.12
|
|
pkgrel=3
|
|
pkgdesc="The Perl Pkgconfig module"
|
|
arch=(any)
|
|
license=('LGPL')
|
|
url="http://gtk2-perl.sourceforge.net/"
|
|
depends=('perl>=5.14.2')
|
|
replaces=('extutils-pkgconfig')
|
|
source=(http://downloads.sourceforge.net/sourceforge/gtk2-perl/${_realname}-${pkgver}.tar.gz)
|
|
options=('!emptydirs')
|
|
md5sums=('8fc5c0b30cfda2048ec87ae418cc3508')
|
|
|
|
build() {
|
|
cd ${srcdir}/${_realname}-${pkgver}
|
|
perl Makefile.PL INSTALLDIRS=vendor
|
|
make
|
|
}
|
|
|
|
check() {
|
|
cd ${srcdir}/${_realname}-${pkgver}
|
|
make test
|
|
}
|
|
|
|
package() {
|
|
cd ${srcdir}/${_realname}-${pkgver}
|
|
make DESTDIR=${pkgdir} install
|
|
}
|