Skip to content

Instantly share code, notes, and snippets.

/PKGBUILD Secret

Created November 7, 2015 17:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/de170d8230a6ec76fb2d to your computer and use it in GitHub Desktop.
Save anonymous/de170d8230a6ec76fb2d to your computer and use it in GitHub Desktop.
PKGBUILD musictube
# Maintainer: Marius Nestor <marius softpedia com>
pkgname=musictube
pkgver=1.5
pkgrel=1
pkgdesc="A YouTube music player"
arch=('i686' 'x86_64')
url="http://flavio.tordini.org/musictube"
license=('Proprietary')
depends=('qt4' 'phonon')
install='musictube.install'
if [[ "$CARCH" == "i686" ]]; then
source=("http://flavio.tordini.org/files/musictube/musictube.deb")
sha256sums=('65fe0bba1fa4352a969abc22b95d83d865aa08d764bab2d75cb948e88e9f9674')
elif [[ "$CARCH" == "x86_64" ]]; then
source=("http://flavio.tordini.org/files/musictube/musictube64.deb")
sha256sums=('b9bfd9183705e34d2509738a9b156d1da183dcb4aafdfd951d4b11a377888a2f')
fi
package() {
tar xvf "$srcdir/data.tar.xz" -C "$pkgdir/"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment