p5-gstreamer1: initial commit

This commit is contained in:
Alexandr Savca 2018-03-31 23:24:08 +03:00
parent 79917cbfbb
commit c580ef001d
4 changed files with 49 additions and 0 deletions

13
p5-gstreamer1/.footprint Normal file
View File

@ -0,0 +1,13 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/lib/
drwxr-xr-x root/root usr/lib/perl5/
drwxr-xr-x root/root usr/lib/perl5/site_perl/
drwxr-xr-x root/root usr/lib/perl5/site_perl/5.24/
-rw-r--r-- root/root usr/lib/perl5/site_perl/5.24/GStreamer1.pm
drwxr-xr-x root/root usr/lib/perl5/site_perl/5.24/GStreamer1/
drwxr-xr-x root/root usr/lib/perl5/site_perl/5.24/GStreamer1/Caps/
-rw-r--r-- root/root usr/lib/perl5/site_perl/5.24/GStreamer1/Caps/Simple.pm
drwxr-xr-x root/root usr/share/
drwxr-xr-x root/root usr/share/man/
drwxr-xr-x root/root usr/share/man/man3/
-rw-r--r-- root/root usr/share/man/man3/GStreamer1.3pm.gz

1
p5-gstreamer1/.md5sum Normal file
View File

@ -0,0 +1 @@
f23024341f2279bbfc7d2d3c027533ed GStreamer1-0.003.tar.gz

5
p5-gstreamer1/.signature Normal file
View File

@ -0,0 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF3/CDozDeIsr9E/sjpWkPTlKkju/EwxJBPKP4IcKVA4du7inF2JsgSHFcvV8rHiZe7NGOakT02gkAocsBIlkNSg4=
SHA256 (Pkgfile) = 3c7d5d43fcb1fbbc81fdfc30f49c56c594a1a1686fab5cb73620c3067090250c
SHA256 (.footprint) = 9737e3247e29679885d46f26328aacacddbfc73a253cb94eeec0b03942b52232
SHA256 (GStreamer1-0.003.tar.gz) = 4cf0ecfaefd425ac6f171fff5430e770efc3ea161475ee8856ccd23a974502dc

30
p5-gstreamer1/Pkgfile Normal file
View File

@ -0,0 +1,30 @@
# Description: Bindings for GStreamer 1.0, the open source multimedia framework
# URL: https://metacpan.org/pod/GStreamer1
# Maintainer: Alexandr Savca, alexandr dot savca89 at gmail dot com
# Depends on: p5-glib-object-introspection
name=p5-gstreamer1
version=0.003
release=1
source=(https://cpan.metacpan.org/authors/id/T/TM/TMURRAY/GStreamer1-$version.tar.gz)
build() {
cd GStreamer1-$version
# Remove Devel::CheckLib dependency
sed -i -e '6,10d' Makefile.PL
perl Makefile.PL
make
make install DESTDIR=$PKG
find $PKG -name perllocal.pod \
-o -name "*.bs" \
-o -name .packlist \
-o -name autosplit.ix \
| xargs rm -f
find $PKG -depth -type d -empty -delete
find $PKG -type f -a -perm -u-w | xargs chmod u+w
}