mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-02-03 08:37:19 +08:00
add minitube and qtractor
This commit is contained in:
parent
84f3e936dc
commit
b05abf289a
32
minitube/PKGBUILD
Normal file
32
minitube/PKGBUILD
Normal file
@ -0,0 +1,32 @@
|
||||
#
|
||||
# Chakra Packages for Chakra, part of chakra-project.org
|
||||
#
|
||||
# maintainer (i686): Phil Miller <philm[at]chakra-project[dog]org>
|
||||
# maintainer (x86_64): Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
|
||||
|
||||
# include global config
|
||||
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
||||
|
||||
pkgname=minitube
|
||||
pkgver=1.0
|
||||
pkgrel=1
|
||||
pkgdesc="A native YouTube client in QT. Watch YouTube videos without Flash Player"
|
||||
arch=('i686' 'x86_64')
|
||||
url="http://flavio.tordini.org/minitube"
|
||||
license=('GPL')
|
||||
depends=('phonon' 'qt')
|
||||
optdepends=('phonon-xine: for xine backend (default by chakra)'
|
||||
'phonon-gstreamer: for gstreamer backend'
|
||||
'gstreamer0.10-plugins: to get all videos to play with phonon-gstreamer'
|
||||
'phonon-mplayer: for mplayer backend'
|
||||
'phonon-vlc: for vlc backend')
|
||||
install=minitube.install
|
||||
source=(http://flavio.tordini.org/files/${pkgname}/${pkgname}-${pkgver}.tar.gz)
|
||||
md5sums=('bfc82b1dcbd22f8505aa724a084da9a0')
|
||||
|
||||
build() {
|
||||
cd "${srcdir}/${pkgname}"
|
||||
|
||||
qmake PREFIX="/usr" || return 1
|
||||
make install INSTALL_ROOT="${pkgdir}" || return 1
|
||||
}
|
11
minitube/minitube.install
Normal file
11
minitube/minitube.install
Normal file
@ -0,0 +1,11 @@
|
||||
post_install() {
|
||||
xdg-icon-resource forceupdate --theme hicolor &> /dev/null
|
||||
}
|
||||
|
||||
post_upgrade() {
|
||||
post_install
|
||||
}
|
||||
|
||||
post_remove() {
|
||||
post_install
|
||||
}
|
30
qtractor/PKGBUILD
Normal file
30
qtractor/PKGBUILD
Normal file
@ -0,0 +1,30 @@
|
||||
#
|
||||
# Chakra Packages for Chakra, part of chakra-project.org
|
||||
#
|
||||
# maintainer (i686): Phil Miller <philm[at]chakra-project[dog]org>
|
||||
# maintainer (x86_64): Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
|
||||
|
||||
# include global config
|
||||
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
||||
|
||||
pkgname=qtractor
|
||||
pkgver=0.4.6
|
||||
pkgrel=1
|
||||
pkgdesc="Audio/MIDI multitrack sequencer"
|
||||
arch=(i686 x86_64)
|
||||
url="http://qtractor.sourceforge.net/"
|
||||
license=('GPL')
|
||||
depends=('qt' 'jack' 'slv2' 'libmad' 'libsamplerate'
|
||||
'rubberband' 'liblo')
|
||||
makedepends=('ladspa' 'dssi')
|
||||
[ "$CARCH" = "i686" ] && optdepends=('dssi-vst: win32 VST support')
|
||||
source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz)
|
||||
|
||||
build() {
|
||||
cd "$srcdir/$pkgname-$pkgver"
|
||||
|
||||
./configure --prefix=/usr
|
||||
make || return 1
|
||||
make DESTDIR="$pkgdir/" install
|
||||
}
|
||||
md5sums=('50ba658782fcba412095525eaaf56038')
|
Loading…
Reference in New Issue
Block a user