diff options
author | Jonathan Larsen <agentc0re@learnix.net> | 2010-04-08 18:22:52 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-15 10:26:27 +0200 |
commit | e21fe6b59ecb3d38a6f71966dca5c8204703915c (patch) | |
tree | 7e9cafd4ec7281f6ab127adcb0d5cb1f5bb1ffdc /libraries/frei0r | |
parent | d013b34d2344f60eee724290f6c3ddfe3c4566a1 (diff) | |
download | slackbuilds-e21fe6b59ecb3d38a6f71966dca5c8204703915c.tar.gz |
libraries/frei0r: Updated build with bash 4 fixes.
Diffstat (limited to 'libraries/frei0r')
-rw-r--r-- | libraries/frei0r/README | 2 | ||||
-rw-r--r-- | libraries/frei0r/frei0r.SlackBuild | 20 | ||||
-rw-r--r-- | libraries/frei0r/frei0r.info | 3 |
3 files changed, 15 insertions, 10 deletions
diff --git a/libraries/frei0r/README b/libraries/frei0r/README index da0b095a89..8646e88aba 100644 --- a/libraries/frei0r/README +++ b/libraries/frei0r/README @@ -2,3 +2,5 @@ Frei0r is a minimalistic plugin API for video sources and filters. The behaviour of the effects can be controlled from the host by simple parameters. The intent is to solve the recurring reimplementation or adaptation issue of standard effects. + +MD5 may be different since there is only a daily snapshot provided diff --git a/libraries/frei0r/frei0r.SlackBuild b/libraries/frei0r/frei0r.SlackBuild index 8141db5861..d479e0f061 100644 --- a/libraries/frei0r/frei0r.SlackBuild +++ b/libraries/frei0r/frei0r.SlackBuild @@ -21,10 +21,17 @@ # OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +# Change Log +# +# Mar 3rd, 2010 +# *Revised to build "2" - fixed the "strip" for bash 4 +# *compatability and removed the man page section +# + PRGNAM=frei0r VERSION=20100124 ARCH=${ARCH:-i486} -BUILD=${BUILD:-1} +BUILD=${BUILD:-2} TAG=${TAG:-_SBo} CWD=$(pwd) @@ -77,16 +84,13 @@ make install DESTDIR=$PKG find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | \ xargs strip --strip-unneeded 2> /dev/null || true find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | \ - xargs strip --strip-unneeded 2> /dev/null -) - -( cd $PKG/usr/man - find . -type f -exec gzip -9 {} \; - for i in $( find . -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done + xargs strip --strip-unneeded 2> /dev/null || true ) mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a AUTHORS COPYING ChangeLog Doxyfile INSTALL NEWS README \ +cd $TMP/$PRGNAM-$VERSION +cp -a \ + AUTHORS COPYING ChangeLog Doxyfile INSTALL NEWS README \ $PKG/usr/doc/$PRGNAM-$VERSION cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild diff --git a/libraries/frei0r/frei0r.info b/libraries/frei0r/frei0r.info index b5c12f1ed9..b3ddc03144 100644 --- a/libraries/frei0r/frei0r.info +++ b/libraries/frei0r/frei0r.info @@ -7,5 +7,4 @@ DOWNLOAD_x86_64="" MD5SUM_x86_64="" MAINTAINER="Jonathan Larsen" EMAIL="agentc0re@learnix.net" -APPROVED="michiel" - +APPROVED="dsomero" |