diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2012-06-13 07:58:42 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2012-06-13 07:58:42 +0000 |
commit | f170b059fef49ebcaa2c0e6beaa9a136b41398bc (patch) | |
tree | 9378680127d28f3a83e7eafdc2cdc89e58a0c307 /testing/wxgtk | |
parent | 84e853ed17a2ce4b3fa5cd4229df96a9d52e027f (diff) | |
download | aports-f170b059fef49ebcaa2c0e6beaa9a136b41398bc.tar.bz2 aports-f170b059fef49ebcaa2c0e6beaa9a136b41398bc.tar.xz |
main/wxgtk: moved from testing
Diffstat (limited to 'testing/wxgtk')
-rw-r--r-- | testing/wxgtk/APKBUILD | 72 |
1 files changed, 0 insertions, 72 deletions
diff --git a/testing/wxgtk/APKBUILD b/testing/wxgtk/APKBUILD deleted file mode 100644 index 62dbbbde02..0000000000 --- a/testing/wxgtk/APKBUILD +++ /dev/null @@ -1,72 +0,0 @@ -# Contributor: Natanael Copa <ncopa@alpinelinux.org> -# Maintainer: Natanael Copa <ncopa@alpinelinux.org> -pkgname=wxgtk -pkgver=2.8.12 -pkgrel=0 -pkgdesc="GTK2 port of the wxWidgets GUI library" -url="http://www.wxwidgets.org/" -arch="all" -license="wxWidgets" -depends="" -depends_dev="gtk+2.0-dev zlib-dev tiff-dev libpng-dev jpeg-dev expat-dev - libsm-dev" -makedepends="$depends_dev sdl-dev gst-plugins-base-dev gstreamer-dev gconf-dev" -install="" -subpackages="$pkgname-dev $pkgname-lang $pkgname-media wxbase" -source="http://downloads.sourceforge.net/wxwindows/wxGTK-$pkgver.tar.bz2" - -_builddir="$srcdir"/wxGTK-$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-sdl \ - --enable-unicode \ - --enable-no_deps \ - --enable-shared \ - --enable-sound \ - --enable-mediactrl \ - --disable-rpath \ - --disable-optimise \ - || return 1 - make || return 1 -} - -package() { - cd "$_builddir" - make DESTDIR="$pkgdir" install || return 1 - rm -f "$pkgdir"/usr/lib/*.la -} - -dev() { - default_dev - mv "$pkgdir"/usr/lib/wx/config "$subpkgdir"/usr/lib/wx/ || return 1 - mv "$pkgdir"/usr/bin/wxrc* "$subpkgdir"/usr/bin/ || return 1 - mv "$pkgdir"/usr/share/bakefile "$subpkgdir"/usr/share/ || return 1 -} - -media() { - pkgdesc="Multimedia add-on for the wxWidgets library" - mkdir -p "$subpkgdir"/usr/lib/ - mv "$pkgdir"/usr/lib/libwx_gtk2u_media-*.so.* "$subpkgdir"/usr/lib/ -} - -wxbase() { - pkgdesc="Non-GUI support classes from the wxWidgets library" - mkdir -p "$subpkgdir"/usr/lib/ - mv "$pkgdir"/usr/lib/libwx_baseu-*.so.* \ - "$pkgdir"/usr/lib/libwx_baseu_net-*.so.* \ - "$pkgdir"/usr/lib/libwx_baseu_xml-*.so.* \ - "$subpkgdir"/usr/lib/ -} - -md5sums="08f81ab60647308058f6ce99712b14f8 wxGTK-2.8.12.tar.bz2" |