diff options
Diffstat (limited to 'libraries')
-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 da0b095a89c4..8646e88abab5 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 8141db5861ca..d479e0f061c6 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 b5c12f1ed94d..b3ddc0314416 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" |