mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-03-19 00:21:40 +00:00
aur updates
This commit is contained in:
parent
193d82d836
commit
91802d4c39
2 changed files with 25 additions and 16 deletions
|
@ -4,7 +4,7 @@
|
||||||
|
|
||||||
pkgname=flexget
|
pkgname=flexget
|
||||||
_pkgname=FlexGet
|
_pkgname=FlexGet
|
||||||
pkgver=1.2.226
|
pkgver=1.2.283
|
||||||
pkgrel=1
|
pkgrel=1
|
||||||
|
|
||||||
pkgdesc="Automate downloading or processing content (torrents, podcasts, etc.) from different sources like RSS-feeds, html-pages, various sites and more."
|
pkgdesc="Automate downloading or processing content (torrents, podcasts, etc.) from different sources like RSS-feeds, html-pages, various sites and more."
|
||||||
|
@ -51,7 +51,7 @@ source=("https://pypi.python.org/packages/source/F/FlexGet/${_pkgname}-${pkgver}
|
||||||
'flexget.service'
|
'flexget.service'
|
||||||
)
|
)
|
||||||
|
|
||||||
sha256sums=('0004be8d1d0a340b3e034f6e6a1cc14995fc89fb18f4bbc9d18c4596295cd0c5'
|
sha256sums=('277f79c9c04e918e5d55c0e7d56663c614cb2b9959f9669a79881aea0dfa8996'
|
||||||
'e2c3a958ed0c286337cd37fba1d6cbdf4306c57fcddf2b9cc43615ce80ae83aa')
|
'e2c3a958ed0c286337cd37fba1d6cbdf4306c57fcddf2b9cc43615ce80ae83aa')
|
||||||
|
|
||||||
package() {
|
package() {
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
#Contributor: Andreas Wagner <andreas dot wagner at em dot uni-frankfurt dot de>
|
#Contributor: Andreas Wagner <andreas dot wagner at em dot uni-frankfurt dot de>
|
||||||
|
|
||||||
pkgname=unison-beta
|
pkgname=unison-beta
|
||||||
pkgver=2.45.4
|
pkgver=2.48.3
|
||||||
pkgrel=1
|
pkgrel=1
|
||||||
pkgdesc="Unison is a file-synchronization tool. Beta Version"
|
pkgdesc="Unison is a file-synchronization tool. Beta Version"
|
||||||
arch=(i686 x86_64)
|
arch=(i686 x86_64)
|
||||||
|
@ -17,31 +17,40 @@ options=(!makeflags)
|
||||||
install=unison.install
|
install=unison.install
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
cd $startdir/src/unison-$pkgver
|
cd $srcdir/unison-$pkgver
|
||||||
CFLAGS=""
|
CFLAGS=""
|
||||||
make clean
|
make clean
|
||||||
make mkProjectInfo
|
make mkProjectInfo
|
||||||
make UISTYLE=text DEBUGGING=false THREADS=true || return 1
|
make UISTYLE=text DEBUGGING=false THREADS=true
|
||||||
mkdir -p $startdir/pkg/usr/bin
|
cp unison $srcdir/unison
|
||||||
install -Dm755 unison $startdir/pkg/usr/bin/unison
|
|
||||||
## clean the builddir and rebuild with gtk support
|
## clean the builddir and rebuild with gtk support
|
||||||
# make clean
|
# make clean
|
||||||
# make mkProjectInfo
|
# make mkProjectInfo
|
||||||
# make UISTYLE=gtk DEBUGGING=false THREADS=true || return 1
|
# make UISTYLE=gtk DEBUGGING=false THREADS=true
|
||||||
# install -Dm755 unison $startdir/pkg/usr/bin/unison-gtk
|
# cp unison $srcdir/unison-gtk
|
||||||
|
|
||||||
## clean the builddir and rebuild with gtk2 support
|
## clean the builddir and rebuild with gtk2 support
|
||||||
make clean
|
make clean
|
||||||
make mkProjectInfo
|
make mkProjectInfo
|
||||||
make UISTYLE=gtk2 DEBUGGING=false THREADS=true || return 1
|
make UISTYLE=gtk2 DEBUGGING=false THREADS=true
|
||||||
install -Dm755 unison $startdir/pkg/usr/bin/unison-gtk2
|
cp unison $srcdir/unison-gtk2
|
||||||
## install a .desktop file; create a compliant icon from ico file and install the png
|
}
|
||||||
install -Dm644 ../unison.desktop $startdir/pkg/usr/share/applications/unison.desktop
|
|
||||||
|
package() {
|
||||||
|
cd $srcdir/unison-$pkgver
|
||||||
|
mkdir -p $pkgdir/usr/bin
|
||||||
|
install -Dm755 ../unison $pkgdir/usr/bin/unison
|
||||||
|
install -Dm755 ../unison-gtk2 $pkgdir/usr/bin/unison-gtk2
|
||||||
|
|
||||||
|
# install a .desktop file; create a compliant icon from ico file and install the png
|
||||||
|
install -Dm644 ../unison.desktop $pkgdir/usr/share/applications/unison.desktop
|
||||||
convert win32rc/U.ico unison.png
|
convert win32rc/U.ico unison.png
|
||||||
install -Dm644 unison-1.png $startdir/pkg/usr/share/pixmaps/unison.png
|
install -Dm644 unison-1.png $pkgdir/share/pixmaps/unison.png
|
||||||
## make symlink for .desktop file
|
## make symlink for .desktop file
|
||||||
cd $startdir/pkg//usr/bin
|
cd $pkgdir/usr/bin
|
||||||
ln -s unison-gtk2 unison-x11
|
ln -s unison-gtk2 unison-x11
|
||||||
}
|
}
|
||||||
|
|
||||||
md5sums=('b345bff33a6fa21a9733904facd9fca6'
|
md5sums=('91ff2ef4141aede9af719fdd5e848bcb'
|
||||||
'2daecba7705455a8e4b769e48b059872')
|
'2daecba7705455a8e4b769e48b059872')
|
||||||
|
|
Loading…
Reference in a new issue