diff options
author | Carlo Landmeter <clandmeter@gmail.com> | 2016-08-25 15:26:24 +0200 |
---|---|---|
committer | Carlo Landmeter <clandmeter@gmail.com> | 2016-08-25 15:26:24 +0200 |
commit | b6af1e02efe594039707cd882517663d5370f375 (patch) | |
tree | ff9c2d55873e051e82972ba64c017352d3a75d34 /testing/cantata/APKBUILD | |
parent | a71346b7acebc600960a98c84fb32cfd72fe864b (diff) | |
download | aports-b6af1e02efe594039707cd882517663d5370f375.tar.bz2 aports-b6af1e02efe594039707cd882517663d5370f375.tar.xz |
testing/[multiple]: move unmaintained packages
This moves all packages from testing to unmaintained which have not been
updated for atleast 6 months. If you are affected by this commit please follow
this proceddure:
* make sure your packages build on all architectures
* move your pacakge(s) back to testing
* if you want to keep this package and can maintain it (or find somebody to
maintain it for you) for a minimum of 6 months ask it to be moved to community
Diffstat (limited to 'testing/cantata/APKBUILD')
-rw-r--r-- | testing/cantata/APKBUILD | 46 |
1 files changed, 0 insertions, 46 deletions
diff --git a/testing/cantata/APKBUILD b/testing/cantata/APKBUILD deleted file mode 100644 index 71eebd37b1..0000000000 --- a/testing/cantata/APKBUILD +++ /dev/null @@ -1,46 +0,0 @@ -# Contributor: Olivier Mauras <olivier@mauras.ch> -# Maintainer: -pkgname=cantata -pkgver=1.5.2 -pkgrel=0 -pkgdesc="Qt based graphical client for MPD" -url="https://code.google.com/p/cantata/" -arch="all" -license="GPLv3" -depends="" -depends_dev="qt-dev ffmpeg-dev taglib-dev mpg123-dev" -makedepends="cmake $depends_dev" -install="" -subpackages="" -source="$pkgname-$pkgver.tar.bz2::https://drive.google.com/uc?export=download&id=0Bzghs6gQWi60LV9rM3RMQk85Z1E" - -_builddir=$srcdir/$pkgname-$pkgver -prepare() { - # Apply patches - 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" - mkdir build - cd build - cmake .. - make -} - -package() { - cd "$_builddir/build" - make DESTDIR="$pkgdir" install || return 1 - mv $pkgdir/usr/local/share/* $pkgdir/usr/share/ - rm -r $pkgdir/usr/local -} - -md5sums="0b29d30f1b03ecac23eb608309fbeaa1 cantata-1.5.2.tar.bz2" -sha256sums="4de985b74597c4c3936982437ea562711d08c37d318b61e04f5c07af55f52c5f cantata-1.5.2.tar.bz2" -sha512sums="84314758a936d5795a05cade68fe86df90c83b7fae78152bd60ae8b77d3cb71db6e37f0e30d49aba60b5205aea794729357051819d2d806e0a21701a1e0c78ab cantata-1.5.2.tar.bz2" - |