gst-libav:ver.bump

This commit is contained in:
Rmys
2018-08-04 15:16:05 +03:00
parent 28ac0d3d77
commit 678bc31263
7 changed files with 453 additions and 64 deletions
+24
View File
@@ -0,0 +1,24 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3.
# See the file http://www.gnu.org/licenses/gpl.txt
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
def setup():
autotools.configure("--with-package-name='PisiLinux gst-libav package' \
--with-package-origin='http://www.pisilinux.org' \
--enable-ffmpeg")
pisitools.dosed("libtool", " -shared ", " -Wl,-O1,--as-needed -shared ")
def build():
autotools.make()
def install():
autotools.install()
pisitools.dodoc("README","NEWS","ChangeLog")