commit c580ef001d8d59f3d78f8d4d7c17475f23c2d48d Author: Alexandr Savca <alexandr.savca89@gmail.com> Date: Sat Mar 31 23:24:08 2018 +0300 p5-gstreamer1: initial commit diff --git a/p5-gstreamer1/.footprint b/p5-gstreamer1/.footprint new file mode 100644 index 00000000..dca1a868 --- /dev/null +++ b/p5-gstreamer1/.footprint @@ -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 diff --git a/p5-gstreamer1/.md5sum b/p5-gstreamer1/.md5sum new file mode 100644 index 00000000..a5439302 --- /dev/null +++ b/p5-gstreamer1/.md5sum @@ -0,0 +1 @@ +f23024341f2279bbfc7d2d3c027533ed GStreamer1-0.003.tar.gz diff --git a/p5-gstreamer1/.signature b/p5-gstreamer1/.signature new file mode 100644 index 00000000..d7cc38e2 --- /dev/null +++ b/p5-gstreamer1/.signature @@ -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 diff --git a/p5-gstreamer1/Pkgfile b/p5-gstreamer1/Pkgfile new file mode 100644 index 00000000..05237939 --- /dev/null +++ b/p5-gstreamer1/Pkgfile @@ -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 +}