mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-05 15:47:15 +08:00
32 lines
802 B
Bash
32 lines
802 B
Bash
|
#
|
||
|
# Games Packages for Chakra, part of chakra-project.org
|
||
|
#
|
||
|
# Maintainer: Adrián Chaves Fernández (Gallaecio) <adriyetichaves gmail.com>
|
||
|
|
||
|
# include global config
|
||
|
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
||
|
|
||
|
pkgname=perl-tie-simple
|
||
|
_realname=Tie-Simple
|
||
|
pkgver=1.03
|
||
|
pkgrel=1
|
||
|
pkgdesc="Variable ties made easier: much, much, much easier..."
|
||
|
arch=(any)
|
||
|
license=(PerlArtistic GPL)
|
||
|
depends=(perl)
|
||
|
url='http://search.cpan.org/dist/$_realname'
|
||
|
options=('!emptydirs')
|
||
|
source=("http://search.cpan.org/CPAN/authors/id/H/HA/HANENKAMP/$_realname-$pkgver.tar.gz")
|
||
|
md5sums=('198f7ec68c9b954251c4ed163ee112c7')
|
||
|
|
||
|
build() {
|
||
|
cd $srcdir/$_realname-$pkgver
|
||
|
PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
|
||
|
make
|
||
|
}
|
||
|
|
||
|
package() {
|
||
|
cd $srcdir/$_realname-$pkgver
|
||
|
make DESTDIR="$pkgdir" install
|
||
|
}
|