diff options
author | Jeff Bilyk <jbilyk@gmail.com> | 2012-03-17 17:49:40 +0000 |
---|---|---|
committer | Jeff Bilyk <jbilyk@gmail.com> | 2012-03-17 17:49:40 +0000 |
commit | f12d1fd4f67201554b6ae550d8800e6b979ef6f8 (patch) | |
tree | 5baa0408e5e3e01493dba9ee5731a5ae3d287ac7 /testing | |
parent | a6655ac9b6cad23ea5f7556a2d60b7bbaa2e1ce5 (diff) | |
download | aports-f12d1fd4f67201554b6ae550d8800e6b979ef6f8.tar.bz2 aports-f12d1fd4f67201554b6ae550d8800e6b979ef6f8.tar.xz |
main/{mp3splt,libmp3splt,mp3splt-gtk}: moved from testing
fixes #769
Diffstat (limited to 'testing')
-rw-r--r-- | testing/libmp3splt/APKBUILD | 44 | ||||
-rw-r--r-- | testing/mp3splt-gtk/APKBUILD | 42 | ||||
-rw-r--r-- | testing/mp3splt/APKBUILD | 42 |
3 files changed, 0 insertions, 128 deletions
diff --git a/testing/libmp3splt/APKBUILD b/testing/libmp3splt/APKBUILD deleted file mode 100644 index a6ac8c4cc2..0000000000 --- a/testing/libmp3splt/APKBUILD +++ /dev/null @@ -1,44 +0,0 @@ -# Contributor: Natanael Copa <ncopa@alpinelinux.org> -# Maintainer: Natanael Copa <ncopa@alpinelinux.org> -pkgname=libmp3splt -pkgver=0.7 -pkgrel=2 -pkgdesc="Library to split mp3 and ogg files without decoding" -url="http://mp3splt.sourceforge.net/" -arch="all" -license="GPLv2" -depends="" -depends_dev="pcre-dev libogg-dev libmad-dev libvorbis-dev libid3tag-dev libtool" -makedepends="$depends_dev" -install="" -subpackages="$pkgname-dev" -source="http://prdownloads.sourceforge.net/mp3splt/libmp3splt-$pkgver.tar.gz" - -_builddir="$srcdir"/libmp3splt-$pkgver -prepare() { - local i - cd "$_builddir" - for i in $source; do - case $i in - *.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;; - esac - done -} - -build() { - cd "$_builddir" - ./configure --prefix=/usr \ - --enable-ogg \ - --enable-mp3 \ - || return 1 - make || return 1 -} - -package() { - cd "$_builddir" - make DESTDIR="$pkgdir" install || return 1 - rm -f "$pkgdir"/usr/lib/*.la \ - "$pkgdir"/usr/lib/libmp3splt/*.la -} - -md5sums="dadb166361e2a28955032a1b9f10ed38 libmp3splt-0.7.tar.gz" diff --git a/testing/mp3splt-gtk/APKBUILD b/testing/mp3splt-gtk/APKBUILD deleted file mode 100644 index f8b83a6de5..0000000000 --- a/testing/mp3splt-gtk/APKBUILD +++ /dev/null @@ -1,42 +0,0 @@ -# Contributor: Natanael Copa <ncopa@alpinelinux.org> -# Maintainer: Natanael Copa <ncopa@alpinelinux.org> -pkgname=mp3splt-gtk -pkgver=0.7 -pkgrel=0 -pkgdesc="Gtk frontend for mp3splt" -url="http://mp3splt.sourceforge.net/" -arch="all" -license="GPLv2" -depends="" -makedepends="gtk+-dev gst-plugins-base-dev gnome-doc-utils libmp3splt-dev - audacious-dev" -install="" -subpackages="$pkgname-doc $pkgname-lang" -source="http://prdownloads.sourceforge.net/mp3splt/mp3splt-gtk-$pkgver.tar.gz" - -_builddir="$srcdir"/mp3splt-gtk-$pkgver -prepare() { - local i - cd "$_builddir" - for i in $source; do - case $i in - *.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;; - esac - done -} - -build() { - cd "$_builddir" - ./configure --prefix=/usr \ - --disable-gnome \ - || return 1 - make || return 1 -} - -package() { - cd "$_builddir" - make DESTDIR="$pkgdir" install || return 1 - rm -f "$pkgdir"/usr/lib/*.la -} - -md5sums="a1cefffb7ea78ae7c07c8d3ba7a2630b mp3splt-gtk-0.7.tar.gz" diff --git a/testing/mp3splt/APKBUILD b/testing/mp3splt/APKBUILD deleted file mode 100644 index b411ffee05..0000000000 --- a/testing/mp3splt/APKBUILD +++ /dev/null @@ -1,42 +0,0 @@ -# Contributor: Natanael Copa <ncopa@alpinelinux.org> -# Maintainer: Natanael Copa <ncopa@alpinelinux.org> -pkgname=mp3splt -pkgver=2.4 -pkgrel=0 -pkgdesc="A command-line, AlbumWrap and mp3wrap file exctractor" -url="http://mp3splt.sourceforge.net/" -arch="all" -license="GPLv2" -depends="" -makedepends="libmp3splt-dev" -install="" -subpackages="$pkgname-doc" -source="http://prdownloads.sourceforge.net/mp3splt/mp3splt-$pkgver.tar.gz" - -_builddir="$srcdir"/mp3splt-$pkgver -prepare() { - local i - cd "$_builddir" - for i in $source; do - case $i in - *.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;; - esac - done -} - -build() { - cd "$_builddir" - ./configure --prefix=/usr \ - --with-mp3splt-includes=/usr/include/libmp3splt \ - --enable-oggsplt_symlink \ - || return 1 - make || return 1 -} - -package() { - cd "$_builddir" - make DESTDIR="$pkgdir" install || return 1 - rm -f "$pkgdir"/usr/lib/*.la -} - -md5sums="aa4dc3de6e789961c71d8b3daaac0623 mp3splt-2.4.tar.gz" |