mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-02-03 20:47:14 +08:00
Added 11 Perl modules, dependencies of 'perl-alien-sdl', which can't be packaged until 'perl' is upgraded.
This commit is contained in:
parent
9885f1de1a
commit
3c6d6092b5
@ -1,5 +1,5 @@
|
||||
#!/bin/bash
|
||||
cd $1
|
||||
../makepkg -sr
|
||||
rm -r pkg src *.pkg.*
|
||||
../makepkg -frs
|
||||
sudo rm -rf pkg src *.pkg.*
|
||||
cd ..
|
||||
|
38
perl-algorithm-diff/PKGBUILD
Normal file
38
perl-algorithm-diff/PKGBUILD
Normal file
@ -0,0 +1,38 @@
|
||||
#
|
||||
# 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-algorithm-diff
|
||||
_pkgname=Algorithm-Diff
|
||||
pkgver=1.1902
|
||||
pkgrel=1
|
||||
pkgdesc="Perl module to Compute 'intelligent' differences between two files / lists."
|
||||
arch=('i686' 'x86_64')
|
||||
license=('PerlArtistic' 'GPL')
|
||||
options=('!emptydirs')
|
||||
depends=('perl')
|
||||
url='http://search.cpan.org/~tyemq/Algorithm-Diff/'
|
||||
source=("http://search.cpan.org/CPAN/authors/id/T/TY/TYEMQ/$_pkgname-$pkgver.tar.gz")
|
||||
md5sums=('ff3e17ae485f8adfb8857b183991fbce')
|
||||
|
||||
build() {
|
||||
cd $srcdir/$_pkgname-$pkgver
|
||||
|
||||
PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
|
||||
make
|
||||
|
||||
}
|
||||
|
||||
package() {
|
||||
cd $srcdir/$_pkgname-$pkgver
|
||||
|
||||
make install DESTDIR="$pkgdir/"
|
||||
|
||||
# Remove perllocal.pod and .packlist:
|
||||
find "$pkgdir" -name perllocal.pod -delete
|
||||
find "$pkgdir" -name .packlist -delete
|
||||
}
|
38
perl-archive-zip/PKGBUILD
Normal file
38
perl-archive-zip/PKGBUILD
Normal file
@ -0,0 +1,38 @@
|
||||
#
|
||||
# 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-archive-zip
|
||||
_pkgname=Archive-Zip
|
||||
pkgver=1.30
|
||||
pkgrel=1
|
||||
pkgdesc="Perl module to create, manipulate, read, and write Zip archive files."
|
||||
arch=('i686' 'x86_64')
|
||||
license=('PerlArtistic' 'GPL')
|
||||
options=('!emptydirs')
|
||||
depends=('perl')
|
||||
url='http://search.cpan.org/~adamk/Archive-Zip/'
|
||||
source=("http://search.cpan.org/CPAN/authors/id/A/AD/ADAMK/$_pkgname-$pkgver.tar.gz")
|
||||
md5sums=('40153666e7538b410e001aa8a810e702')
|
||||
|
||||
build() {
|
||||
cd $srcdir/$_pkgname-$pkgver
|
||||
|
||||
PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
|
||||
make
|
||||
|
||||
}
|
||||
|
||||
package() {
|
||||
cd $srcdir/$_pkgname-$pkgver
|
||||
|
||||
make install DESTDIR="$pkgdir/"
|
||||
|
||||
# Remove perllocal.pod and .packlist:
|
||||
find "$pkgdir" -name perllocal.pod -delete
|
||||
find "$pkgdir" -name .packlist -delete
|
||||
}
|
38
perl-capture-tiny/PKGBUILD
Normal file
38
perl-capture-tiny/PKGBUILD
Normal file
@ -0,0 +1,38 @@
|
||||
#
|
||||
# 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-capture-tiny
|
||||
_pkgname=Capture-Tiny
|
||||
pkgver=0.08
|
||||
pkgrel=1
|
||||
pkgdesc="Perl module to capture anything sent to STDOUT or STDERR."
|
||||
arch=('i686' 'x86_64')
|
||||
license=('PerlArtistic' 'GPL')
|
||||
options=('!emptydirs')
|
||||
depends=('perl')
|
||||
url='http://search.cpan.org/~dagolden/Capture-Tiny/'
|
||||
source=("http://search.cpan.org/CPAN/authors/id/D/DA/DAGOLDEN/$_pkgname-$pkgver.tar.gz")
|
||||
md5sums=('dadea406a04a114b31a9248772b8c136')
|
||||
|
||||
build() {
|
||||
cd $srcdir/$_pkgname-$pkgver
|
||||
|
||||
perl Build.PL installdirs=vendor destdir="$pkgdir/"
|
||||
perl Build
|
||||
|
||||
}
|
||||
|
||||
package() {
|
||||
cd $srcdir/$_pkgname-$pkgver
|
||||
|
||||
perl Build install
|
||||
|
||||
# Remove perllocal.pod and .packlist:
|
||||
find "$pkgdir" -name perllocal.pod -delete
|
||||
find "$pkgdir" -name .packlist -delete
|
||||
}
|
38
perl-class-inspector/PKGBUILD
Normal file
38
perl-class-inspector/PKGBUILD
Normal file
@ -0,0 +1,38 @@
|
||||
#
|
||||
# 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-class-inspector
|
||||
_pkgname=Class-Inspector
|
||||
pkgver=1.24
|
||||
pkgrel=1
|
||||
pkgdesc="Perl module to get information about a class and its structure."
|
||||
arch=('i686' 'x86_64')
|
||||
license=('PerlArtistic' 'GPL')
|
||||
options=('!emptydirs')
|
||||
depends=('perl')
|
||||
url='http://search.cpan.org/~adamk/Class-Inspector/'
|
||||
source=("http://search.cpan.org/CPAN/authors/id/A/AD/ADAMK/$_pkgname-$pkgver.tar.gz")
|
||||
md5sums=('609189b49f64d329a6e413e0a6d8724a')
|
||||
|
||||
build() {
|
||||
cd $srcdir/$_pkgname-$pkgver
|
||||
|
||||
PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
|
||||
make
|
||||
|
||||
}
|
||||
|
||||
package() {
|
||||
cd $srcdir/$_pkgname-$pkgver
|
||||
|
||||
make install DESTDIR="$pkgdir/"
|
||||
|
||||
# Remove perllocal.pod and .packlist:
|
||||
find "$pkgdir" -name perllocal.pod -delete
|
||||
find "$pkgdir" -name .packlist -delete
|
||||
}
|
38
perl-file-sharedir/PKGBUILD
Normal file
38
perl-file-sharedir/PKGBUILD
Normal file
@ -0,0 +1,38 @@
|
||||
#
|
||||
# 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-file-sharedir
|
||||
_pkgname=File-ShareDir
|
||||
pkgver=1.02
|
||||
pkgrel=1
|
||||
pkgdesc="Perl module to locate per-dist and per-module shared files."
|
||||
arch=('i686' 'x86_64')
|
||||
license=('PerlArtistic' 'GPL')
|
||||
options=('!emptydirs')
|
||||
depends=('perl' 'perl-class-inspector')
|
||||
url='http://search.cpan.org/~adamk/File-ShareDir/'
|
||||
source=("http://search.cpan.org/CPAN/authors/id/A/AD/ADAMK/$_pkgname-$pkgver.tar.gz")
|
||||
md5sums=('edb4b9d418a03bf9b0cf6d0fa9585c3f')
|
||||
|
||||
build() {
|
||||
cd $srcdir/$_pkgname-$pkgver
|
||||
|
||||
PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
|
||||
make
|
||||
|
||||
}
|
||||
|
||||
package() {
|
||||
cd $srcdir/$_pkgname-$pkgver
|
||||
|
||||
make install DESTDIR="$pkgdir/"
|
||||
|
||||
# Remove perllocal.pod and .packlist:
|
||||
find "$pkgdir" -name perllocal.pod -delete
|
||||
find "$pkgdir" -name .packlist -delete
|
||||
}
|
38
perl-file-which/PKGBUILD
Normal file
38
perl-file-which/PKGBUILD
Normal file
@ -0,0 +1,38 @@
|
||||
#
|
||||
# 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-file-sharedir
|
||||
_pkgname=File-ShareDir
|
||||
pkgver=1.02
|
||||
pkgrel=1
|
||||
pkgdesc="Perl module to locate per-dist and per-module shared files."
|
||||
arch=('i686' 'x86_64')
|
||||
license=('PerlArtistic' 'GPL')
|
||||
options=('!emptydirs')
|
||||
depends=('perl' 'perl-class-inspector')
|
||||
url='http://search.cpan.org/~adamk/File-ShareDir/'
|
||||
source=("http://search.cpan.org/CPAN/authors/id/A/AD/ADAMK/$_pkgname-$pkgver.tar.gz")
|
||||
md5sums=('edb4b9d418a03bf9b0cf6d0fa9585c3f')
|
||||
|
||||
build() {
|
||||
cd $srcdir/$_pkgname-$pkgver
|
||||
|
||||
PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
|
||||
make
|
||||
|
||||
}
|
||||
|
||||
package() {
|
||||
cd $srcdir/$_pkgname-$pkgver
|
||||
|
||||
make install DESTDIR="$pkgdir/"
|
||||
|
||||
# Remove perllocal.pod and .packlist:
|
||||
find "$pkgdir" -name perllocal.pod -delete
|
||||
find "$pkgdir" -name .packlist -delete
|
||||
}
|
38
perl-ipc-run3/PKGBUILD
Normal file
38
perl-ipc-run3/PKGBUILD
Normal file
@ -0,0 +1,38 @@
|
||||
#
|
||||
# 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-ipc-run3
|
||||
_pkgname=IPC-Run3
|
||||
pkgver=0.044
|
||||
pkgrel=1
|
||||
pkgdesc="Perl module to run a subprocess and redirect stdin, stdout, and/or stderr to files and perl data structures."
|
||||
arch=('i686' 'x86_64')
|
||||
license=('PerlArtistic' 'GPL')
|
||||
options=('!emptydirs')
|
||||
depends=('perl')
|
||||
url='http://search.cpan.org/~rjbs/IPC-Run3/'
|
||||
source=("http://search.cpan.org/CPAN/authors/id/R/RJ/RJBS/$_pkgname-$pkgver.tar.gz")
|
||||
md5sums=('7df73a65d9efc7b9e7eb04075ff1fd8f')
|
||||
|
||||
build() {
|
||||
cd $srcdir/$_pkgname-$pkgver
|
||||
|
||||
PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
|
||||
make
|
||||
|
||||
}
|
||||
|
||||
package() {
|
||||
cd $srcdir/$_pkgname-$pkgver
|
||||
|
||||
make install DESTDIR="$pkgdir/"
|
||||
|
||||
# Remove perllocal.pod and .packlist:
|
||||
find "$pkgdir" -name perllocal.pod -delete
|
||||
find "$pkgdir" -name .packlist -delete
|
||||
}
|
38
perl-probe-perl/PKGBUILD
Normal file
38
perl-probe-perl/PKGBUILD
Normal file
@ -0,0 +1,38 @@
|
||||
#
|
||||
# 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-probe-perl
|
||||
_pkgname=Probe-Perl
|
||||
pkgver=0.01
|
||||
pkgrel=1
|
||||
pkgdesc="Perl module to obtain information about the currently running perl interpreter."
|
||||
arch=('i686' 'x86_64')
|
||||
license=('PerlArtistic' 'GPL')
|
||||
options=('!emptydirs')
|
||||
depends=('perl')
|
||||
url='http://search.cpan.org/~kwilliams/Probe-Perl/'
|
||||
source=("http://search.cpan.org/CPAN/authors/id/K/KW/KWILLIAMS/$_pkgname-$pkgver.tar.gz")
|
||||
md5sums=('b6f613a7d07dde568a0d4b9570de47c3')
|
||||
|
||||
build() {
|
||||
cd $srcdir/$_pkgname-$pkgver
|
||||
|
||||
perl Build.PL installdirs=vendor destdir="$pkgdir/"
|
||||
perl Build
|
||||
|
||||
}
|
||||
|
||||
package() {
|
||||
cd $srcdir/$_pkgname-$pkgver
|
||||
|
||||
perl Build install
|
||||
|
||||
# Remove perllocal.pod and .packlist:
|
||||
find "$pkgdir" -name perllocal.pod -delete
|
||||
find "$pkgdir" -name .packlist -delete
|
||||
}
|
38
perl-test-script/PKGBUILD
Normal file
38
perl-test-script/PKGBUILD
Normal file
@ -0,0 +1,38 @@
|
||||
#
|
||||
# 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-test-script
|
||||
_pkgname=Test-Script
|
||||
pkgver=1.07
|
||||
pkgrel=1
|
||||
pkgdesc="Perl module to provide basic tests for most testing needed for scripts in the script paths."
|
||||
arch=('i686' 'x86_64')
|
||||
license=('PerlArtistic' 'GPL')
|
||||
options=('!emptydirs')
|
||||
depends=('perl' 'perl-probe-perl' 'perl-ipc-run3')
|
||||
url='http://search.cpan.org/~adamk/Test-Script/'
|
||||
source=("http://search.cpan.org/CPAN/authors/id/A/AD/ADAMK/$_pkgname-$pkgver.tar.gz")
|
||||
md5sums=('f6b5baa6403cd24dac7f023e0ea22384')
|
||||
|
||||
build() {
|
||||
cd $srcdir/$_pkgname-$pkgver
|
||||
|
||||
PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
|
||||
make
|
||||
|
||||
}
|
||||
|
||||
package() {
|
||||
cd $srcdir/$_pkgname-$pkgver
|
||||
|
||||
make install DESTDIR="$pkgdir/"
|
||||
|
||||
# Remove perllocal.pod and .packlist:
|
||||
find "$pkgdir" -name perllocal.pod -delete
|
||||
find "$pkgdir" -name .packlist -delete
|
||||
}
|
38
perl-text-diff/PKGBUILD
Normal file
38
perl-text-diff/PKGBUILD
Normal file
@ -0,0 +1,38 @@
|
||||
#
|
||||
# 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-text-diff
|
||||
_pkgname=Text-Diff
|
||||
pkgver=1.37
|
||||
pkgrel=1
|
||||
pkgdesc="Perl module to provide a basic set of services akin to the GNU diff utility."
|
||||
arch=('i686' 'x86_64')
|
||||
license=('PerlArtistic' 'GPL')
|
||||
options=('!emptydirs')
|
||||
depends=('perl' 'perl-algorithm-diff')
|
||||
url='http://search.cpan.org/~adamk/Text-Diff/'
|
||||
source=("http://search.cpan.org/CPAN/authors/id/A/AD/ADAMK/$_pkgname-$pkgver.tar.gz")
|
||||
md5sums=('52c1cba785ecfbbca242b57742173665')
|
||||
|
||||
build() {
|
||||
cd $srcdir/$_pkgname-$pkgver
|
||||
|
||||
PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
|
||||
make
|
||||
|
||||
}
|
||||
|
||||
package() {
|
||||
cd $srcdir/$_pkgname-$pkgver
|
||||
|
||||
make install DESTDIR="$pkgdir/"
|
||||
|
||||
# Remove perllocal.pod and .packlist:
|
||||
find "$pkgdir" -name perllocal.pod -delete
|
||||
find "$pkgdir" -name .packlist -delete
|
||||
}
|
38
perl-text-patch/PKGBUILD
Normal file
38
perl-text-patch/PKGBUILD
Normal file
@ -0,0 +1,38 @@
|
||||
#
|
||||
# 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-text-patch
|
||||
_pkgname=Text-Patch
|
||||
pkgver=1.8
|
||||
pkgrel=1
|
||||
pkgdesc="Perl module to combine source text with given diff (difference) data."
|
||||
arch=('i686' 'x86_64')
|
||||
license=('PerlArtistic' 'GPL')
|
||||
options=('!emptydirs')
|
||||
depends=('perl' 'perl-text-diff')
|
||||
url='http://search.cpan.org/~cade/Text-Patch/'
|
||||
source=("http://search.cpan.org/CPAN/authors/id/C/CA/CADE/$_pkgname-$pkgver.tar.gz")
|
||||
md5sums=('ad5e453d5ba3b48afd8163114d0fee1c')
|
||||
|
||||
build() {
|
||||
cd $srcdir/$_pkgname-$pkgver
|
||||
|
||||
PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
|
||||
make
|
||||
|
||||
}
|
||||
|
||||
package() {
|
||||
cd $srcdir/$_pkgname-$pkgver
|
||||
|
||||
make install DESTDIR="$pkgdir/"
|
||||
|
||||
# Remove perllocal.pod and .packlist:
|
||||
find "$pkgdir" -name perllocal.pod -delete
|
||||
find "$pkgdir" -name .packlist -delete
|
||||
}
|
Loading…
Reference in New Issue
Block a user