forked from ports/contrib
23 lines
568 B
Plaintext
23 lines
568 B
Plaintext
# Description: Perl bindings for pango
|
|
# URL: http://search.cpan.org/dist/Pango/
|
|
# Maintainer: John Vogel, jvogel4 at stny dot rr dot com
|
|
# Depends on: pango p5-cairo
|
|
|
|
name=p5-pango
|
|
version=1.227
|
|
release=1
|
|
source=(http://search.cpan.org/CPAN/authors/id/X/XA/XAOC/Pango-$version.tar.gz)
|
|
|
|
build() {
|
|
cd Pango-$version
|
|
perl Makefile.PL
|
|
|
|
make OPTIMIZE="$CFLAGS"
|
|
make install DESTDIR=$PKG
|
|
|
|
find $PKG -name perllocal.pod -o -name "*.bs" -o -name .packlist | xargs rm
|
|
find $PKG -empty | xargs rmdir -p ||:
|
|
|
|
find $PKG -type f -a -perm -u-w | xargs chmod u+w
|
|
}
|