Skip to content

Commit

Permalink
youtube-to-mp3 3.4, opencollada latest git checkout, qwinff 0.2.0, un…
Browse files Browse the repository at this point in the history
…etbootin 585
  • Loading branch information
demmm committed Mar 3, 2014
1 parent b2fe825 commit 08dcd13
Show file tree
Hide file tree
Showing 6 changed files with 53 additions and 16 deletions.
4 changes: 2 additions & 2 deletions opencollada/PKGBUILD
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

pkgname=opencollada
pkgver=20130606
pkgver=20140302
#_commit=9665d16
pkgrel=1
pkgdesc="Stream based reader and writer library for COLLADA files"
Expand All @@ -21,7 +21,7 @@ build() {
cd build

cmake .. \
-DCMAKE_INSTALL_PREFIX=/usr
-DCMAKE_INSTALL_PREFIX=/usr -DUSE_SHARED=ON
make
}

Expand Down
8 changes: 4 additions & 4 deletions qwinff/PKGBUILD
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@

pkgname=qwinff
pkgver=0.1.9
pkgrel=2
pkgver=0.2.0
pkgrel=1
pkgdesc="Cross-platform, easy-to-use and open-source media converter GUI using FFmpeg as its backend."
arch=('x86_64')
url="http://qwinff.blogspot.tw/"
url="http://qwinff.github.io/"
license=('GPL3')
depends=('qt' 'ffmpeg' 'sox')
makedepends=('cmake')
source=("http://sourceforge.net/projects/${pkgname}/files/release/v${pkgver}/${pkgname}_${pkgver}.tar.bz2")
md5sums=('45556d82dc94f124b38bec9dd3c86687')
md5sums=('edec2c4e0d879c90ee442de5f4205736')

build() {
cd $srcdir/${pkgname}-${pkgver}
Expand Down
20 changes: 12 additions & 8 deletions trojita/PKGBUILD
Original file line number Diff line number Diff line change
@@ -1,27 +1,31 @@

pkgname=trojita
pkgver=0.3.93
pkgver=0.3.96
pkgrel=1
pkgdesc="Trojita is a Qt IMAP e-mail client."
arch=('x86_64')
url="http://trojita.flaska.net"
license=('GPL')
depends=('qtwebkit')
makedepends=('make')
depends=('qt5-webkit' 'qt5-tools')
makedepends=('cmake' 'automoc4')
groups=('network')
source=("http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.bz2")
md5sums=('6a3490d8b3a94fd6bb18cb5c99cd861f')
md5sums=('fa27ba25fad34df4a532cc70823d3da9')

build() {
cd "$srcdir/$pkgname-$pkgver"
cd $srcdir/$pkgname-$pkgver
mkdir build

qmake PREFIX=/usr trojita.pro
cd build
cmake .. -DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=/usr \
-DWITH_QT5=ON
make
}

package() {
cd "$srcdir/$pkgname-$pkgver"
cd $srcdir/$pkgname-$pkgver/build

make INSTALL_ROOT="$pkgdir" install
make DESTDIR="$pkgdir" install
}

4 changes: 2 additions & 2 deletions unetbootin/PKGBUILD
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

pkgname=unetbootin
pkgver=581
pkgver=585
pkgrel=1
pkgdesc="Allows the creation of bootable Live USB drives."
url="http://unetbootin.sourceforge.net/"
Expand All @@ -9,7 +9,7 @@ arch=('x86_64')
depends=('kde-runtime' 'libpng' 'mtools' 'p7zip' 'qt' 'syslinux')
groups=('system')
source=("http://downloads.sourceforge.net/$pkgname/$pkgname-source-$pkgver.tar.gz")
md5sums=('8b905bfdab8bce78cb1d1d46b52807c3')
md5sums=('483cc1c32d93141fe8f6e40dc8798881')

build() {
lupdate $pkgname.pro
Expand Down
22 changes: 22 additions & 0 deletions youtube-to-mp3/PKGBUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@

pkgname=youtube-to-mp3
name=YouTubeToMP3
pkgver=3.4
pkgrel=1
pkgdesc="Software that allows you to extract audio tracks from YouTube videos and YouTube playlists with the highest quality possible."
arch=('x86_64')
url="http://www.mediahuman.com/"
license=('GPL')
depends=('qt' 'taglib' 'ffmpeg')
install="$pkgname.install"
source=("http://www.mediahuman.com/files/${name}.amd64.deb")
md5sums=('7ffc745a4858e3ab52d486134c5a063f')

package() {
cd ${startdir}/src
tar -zxf ${startdir}/src/data.tar.gz

sed -i '9s|Network|Application;Network|g' "$srcdir/usr/share/applications/youtube-to-mp3.desktop"
sed -i '4s|Saves aoudio track from YouTube|Pulls audio tracks from YouTube videos|g' "$srcdir/usr/share/applications/youtube-to-mp3.desktop"
cp -rp usr $pkgdir
}
11 changes: 11 additions & 0 deletions youtube-to-mp3/youtube-to-mp3.install
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
post_install() {
xdg-icon-resource forceupdate --theme hicolor &> /dev/null
}

post_upgrade() {
post_install
}

post_remove() {
post_install
}

0 comments on commit 08dcd13

Please sign in to comment.