mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-02-03 18:57:16 +08:00
32 lines
797 B
Bash
32 lines
797 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-compress-bzip2
|
|
_realname=Compress-Bzip2
|
|
pkgver=2.09
|
|
pkgrel=1
|
|
pkgdesc="Interface to Bzip2 compression library"
|
|
arch=(i686 x86_64)
|
|
license=(GPL2)
|
|
depends=(perl bzip2)
|
|
url='http://search.cpan.org/dist/$_realname'
|
|
options=('!emptydirs')
|
|
source=("http://search.cpan.org/CPAN/authors/id/A/AR/ARJAY/$_realname-$pkgver.tar.gz")
|
|
md5sums=('1699fde3e86f2a036f135ae606d456bf')
|
|
|
|
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
|
|
}
|