Don't like ads? PRO users don't see any ads ;-)
Guest

perl-config-inifiles-2.57

By: a guest on May 5th, 2010  |  syntax: Bash  |  size: 0.72 KB  |  hits: 168  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. # Maintainer:  TDY <tdy@gmx.com>
  2. # Contributor: Max Nemeth <max.nemeth@gmail.com>
  3.  
  4. pkgname=perl-config-inifiles
  5. pkgver=2.57
  6. pkgrel=1
  7. pkgdesc="A Perl module for reading .ini-style configuration files"
  8. arch=('i686' 'x86_64')
  9. url="http://search.cpan.org/dist/Config-IniFiles/"
  10. license=('GPL' 'PerlArtistic')
  11. depends=('perl')
  12. options=('!emptydirs')
  13. source=(http://search.cpan.org/CPAN/authors/id/S/SH/SHLOMIF/Config-IniFiles-$pkgver.tar.gz)
  14. md5sums=('93d89884fecba98578cd8803fe6c8ce9')
  15.  
  16. build() {
  17.   cd "$srcdir/Config-IniFiles-$pkgver"
  18.   PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor || return 1
  19.   make || return 1
  20. }
  21.  
  22. package() {
  23.   cd "$srcdir/Config-IniFiles-$pkgver"
  24.   make DESTDIR="$pkgdir" install
  25. }