mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
aur updates
This commit is contained in:
parent
20b43ce8a7
commit
ed5f235c9a
10 changed files with 50 additions and 50 deletions
|
@ -3,7 +3,7 @@
|
|||
# Contributor: Maik Broemme <mbroemme@libmpq.org>
|
||||
|
||||
pkgname=asterisk
|
||||
pkgver=12.4.0
|
||||
pkgver=12.5.0
|
||||
pkgrel=1
|
||||
pkgdesc="A complete PBX solution"
|
||||
arch=('i686' 'x86_64')
|
||||
|
@ -126,7 +126,7 @@ source=(http://downloads.asterisk.org/pub/telephony/asterisk/releases/asterisk-$
|
|||
${pkgname}.logrotated \
|
||||
${pkgname}.tmpfile)
|
||||
install=${pkgname}.install
|
||||
sha256sums=('6c72d0060d1ce7a7d09f510d91d588f269aac0032de6a4464d5449b0d5600a72'
|
||||
sha256sums=('8355ccd815f2715ff49bf70c2480b5ea895e0a75250d0f111b1cae5af5acf06f'
|
||||
'74e0b278d553499f0c648a6e3d55c0dbb11b0c6dc93a85b020a21eafadb83783'
|
||||
'caa24cfec5c6b4f8cea385269e39557362acad7e2a552994c3bc24080e3bdd4e'
|
||||
'673c0c55bce8068c297f9cdd389402c2d5d5a25e2cf84732cb071198bd6fa78a')
|
||||
|
@ -153,4 +153,3 @@ package(){
|
|||
install -D -m 644 ${srcdir}/asterisk.service ${pkgdir}/usr/lib/systemd/system/asterisk.service
|
||||
install -D -m 644 ${srcdir}/asterisk.tmpfile ${pkgdir}/usr/lib/tmpfiles.d/asterisk.conf
|
||||
}
|
||||
|
||||
|
|
|
@ -1,26 +1,32 @@
|
|||
# Original Author: Henner Zeller <h.zeller at acm dot org>
|
||||
# Maintainer: Drew DeVore <w.drew.devore at gmail dot com>
|
||||
# Maintainer: Florian Will <florian dot will at gmail dot com>
|
||||
# Contributor: Drew DeVore <w.drew.devore at gmail dot com>
|
||||
|
||||
pkgname=gmrender-resurrect-git
|
||||
_gitname=gmrender-resurrect
|
||||
pkgver=275.61f5a8f
|
||||
pkgrel=1
|
||||
pkgrel=2
|
||||
pkgdesc="Application to stream music from a UPnP server using gstreamer."
|
||||
arch=('any')
|
||||
arch=('i686' 'x86_64')
|
||||
url="https://github.com/hzeller/gmrender-resurrect"
|
||||
license=('GPL2')
|
||||
conflicts=('gmediarender')
|
||||
depends=('gnome-icon-theme' 'gst-libav' 'gst-plugins-base' 'gst-plugins-good' 'gst-plugins-bad' 'gst-plugins-ugly')
|
||||
makedepends=('git' 'autoconf' 'automake' 'libtool' 'libxml2' 'libupnp')
|
||||
backup=(etc/conf.d/gmediarender)
|
||||
depends=('libupnp' 'gst-plugins-good' 'gst-plugins-base')
|
||||
optdepends=(
|
||||
'gst-libav: Extra media codecs'
|
||||
'gst-plugins-bad: Extra media codecs'
|
||||
'gst-plugins-ugly: Extra media codecs'
|
||||
)
|
||||
makedepends=('git')
|
||||
backup=('etc/conf.d/gmediarender')
|
||||
install='gmrender-resurrect.install'
|
||||
source=('git+https://github.com/hzeller/gmrender-resurrect.git'
|
||||
source=(
|
||||
'git+https://github.com/hzeller/gmrender-resurrect.git'
|
||||
'gmediarender.service'
|
||||
'gmediarender')
|
||||
md5sums=('SKIP'
|
||||
'd997492bfb6ccd46018a20ee20b79a39'
|
||||
'979798ff9cac610930f13fb922ca95d4'
|
||||
)
|
||||
'a3fa4bedc6e0853cf40b48c80269736f'
|
||||
'979798ff9cac610930f13fb922ca95d4')
|
||||
|
||||
|
||||
pkgver() {
|
||||
|
@ -31,7 +37,7 @@ pkgver() {
|
|||
build() {
|
||||
cd $_gitname
|
||||
./autogen.sh
|
||||
./configure
|
||||
./configure --prefix=/usr/
|
||||
make
|
||||
}
|
||||
|
||||
|
|
|
@ -5,7 +5,9 @@ After=network.target
|
|||
[Service]
|
||||
Type=forking
|
||||
EnvironmentFile=/etc/conf.d/gmediarender
|
||||
ExecStart=/usr/local/bin/gmediarender -f "${friendly}" -u "${uuid}"-d
|
||||
ExecStart=/usr/bin/gmediarender -f ${friendly} -u ${uuid} -d
|
||||
User=nobody
|
||||
Group=audio
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
||||
|
|
|
@ -1,22 +1,17 @@
|
|||
post_install() {
|
||||
gtk-update-icon-cache -f -t /usr/share/icons/hicolor
|
||||
echo " You may edit the 'Friendly Name' in /etc/conf.d/gmediarender"
|
||||
echo " If you want MP3 playback, you need some of the optional dependencies."
|
||||
echo ""
|
||||
echo " -----------------------------------------------------------------------"
|
||||
echo " Please edit the "Friendly Name" in /etc/conf.d/gmediarender"
|
||||
echo " -----------------------------------------------------------------------"
|
||||
echo " start the service by running (as root):"
|
||||
echo " Start the service by running (as root):"
|
||||
echo " systemctl start gmediarender"
|
||||
echo " -----------------------------------------------------------------------"
|
||||
echo " enable the service by running (as root):"
|
||||
echo " Enable (auto-start) the service by running (as root):"
|
||||
echo " systemctl enable gmediarender"
|
||||
echo " -----------------------------------------------------------------------"
|
||||
echo ""
|
||||
return 0
|
||||
}
|
||||
|
||||
post_upgrade() {
|
||||
post_install
|
||||
}
|
||||
|
||||
post_remove() {
|
||||
post_install
|
||||
echo " Don't forget to restart gmediarender (as root) if it's running:"
|
||||
echo " systemctl daemon-reload"
|
||||
echo " systemctl restart gmediarender"
|
||||
return 0
|
||||
}
|
||||
|
|
|
@ -1,24 +1,24 @@
|
|||
#Maintainer: Christian Stankowic <info at stankowic hypen development dot net>
|
||||
#Contributor: Gary Wright <wriggary at gmail dot com>
|
||||
pkgname=monkey
|
||||
pkgver=1.5.1
|
||||
pkgver=1.5.3
|
||||
pkgrel=1
|
||||
pkgdesc="A very small and fast open source web server for Linux"
|
||||
arch=('i686' 'x86_64')
|
||||
url="http://www.monkey-project.com/"
|
||||
license=('Apache')
|
||||
depends=('gcc-libs')
|
||||
optdepends=('php')
|
||||
optdepends=('php' 'polarssl')
|
||||
source=("http://www.monkey-project.com/releases/1.5/$pkgname-$pkgver.tar.gz"
|
||||
monkey)
|
||||
install=monkey.install
|
||||
md5sums=('2fe04135728f5c3a86c3a412059e0da3'
|
||||
md5sums=('1fa9ddbb4c0100b22f2fc4b8da56dbe9'
|
||||
'1527d1fbddddcfd69ad328639dcd0eed')
|
||||
|
||||
build() {
|
||||
cd $srcdir/$pkgname-$pkgver
|
||||
./configure --prefix=/usr --bindir=/usr/bin --sysconfdir=/etc/$pkgname --default-user=http --default-port=80 \
|
||||
--datadir=/srv/http --logdir=/var/log/$pkgname --plugdir=/usr/lib/$pkgname --enable-shared --systemddir=$pkgdir/lib/systemd/system --pidfile=/var/run/monkey.pid
|
||||
--datadir=/srv/http --logdir=/var/log/$pkgname --plugdir=/usr/lib/$pkgname --enable-shared --systemddir=$pkgdir/lib/systemd/system --pidfile=/var/run/monkey.pid --enable-plugins=polarssl
|
||||
make
|
||||
}
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
# Contributor: Farhan Yousaf <farhany at xaviya dot com>
|
||||
|
||||
pkgname=netatalk
|
||||
pkgver=3.1.4
|
||||
pkgver=3.1.6
|
||||
pkgrel=1
|
||||
pkgdesc='A kernel-level implementation of AFP services'
|
||||
arch=('i686' 'x86_64' 'armv6h' 'armv7h')
|
||||
|
@ -19,7 +19,7 @@ install=$pkgname.install
|
|||
source=(http://downloads.sourceforge.net/project/$pkgname/$pkgname/$pkgver/$pkgname-$pkgver.tar.bz2
|
||||
avahi-client.patch
|
||||
python2.patch)
|
||||
md5sums=('b2efc1e1dec8fcdbfb5f61b8ca2b22ab'
|
||||
md5sums=('be8664358d6d17ed66f45f7e3243bdc7'
|
||||
'00379aacb88dcac8c1e0513da1a5f24c'
|
||||
'97bc0467dd8a866d9f0835d6440e3c19')
|
||||
|
||||
|
|
|
@ -1,9 +1,8 @@
|
|||
# Contributor: Johannes Dewender arch at JonnyJD dot net
|
||||
pkgname=python-configshell-fb
|
||||
_pkgname=configshell-fb
|
||||
pkgver=1.1.fb13
|
||||
pkgver=1.1.fb14
|
||||
pkgrel=1
|
||||
epoch=
|
||||
pkgdesc="python framework for building simple CLI applications (free branch)"
|
||||
arch=('any')
|
||||
url="https://github.com/agrover/configshell-fb"
|
||||
|
@ -14,7 +13,7 @@ provides=('python-configshell')
|
|||
conflicts=('python-configshell')
|
||||
options=()
|
||||
source=(https://fedorahosted.org/releases/t/a/targetcli-fb/$_pkgname-$pkgver.tar.gz)
|
||||
md5sums=('a10cdd7bc418bb86c71aebff112bc63a')
|
||||
sha256sums=('280b6a1361a0d27804e281d54d5513f7dc2258a7a8404ebd9ae53f97ae992d26')
|
||||
|
||||
build() {
|
||||
cd "$srcdir/$_pkgname-$pkgver"
|
||||
|
|
|
@ -6,15 +6,15 @@
|
|||
# Contributor: Amr Hassan <amr.hassan@gmail.com>
|
||||
|
||||
pkgname=python-pylast
|
||||
pkgver=0.5.11
|
||||
pkgrel=5
|
||||
pkgver=1.0.0
|
||||
pkgrel=1
|
||||
pkgdesc='A Python interface to the last.fm API'
|
||||
arch=('any')
|
||||
url='http://pylast.googlecode.com'
|
||||
url='https://github.com/pylast/pylast'
|
||||
license=('Apache')
|
||||
depends=('python')
|
||||
source=("http://pypi.python.org/packages/source/p/${pkgname#*-}/${pkgname#*-}-$pkgver.tar.gz")
|
||||
sha256sums=('bf35820be35447d55564d36072d40b09ac8a7fd41a6f1a7a9d408f4d0eaefac4')
|
||||
sha256sums=('948bc9efb2e2785db8c303cc6559358b943538cc45f902838db770b84843d605')
|
||||
|
||||
build() {
|
||||
cd ${pkgname#*-}-$pkgver
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# Contributor: Johannes Dewender arch at JonnyJD dot net
|
||||
pkgname=python-rtslib-fb
|
||||
_pkgname=rtslib-fb
|
||||
pkgver=2.1.fb48
|
||||
pkgver=2.1.fb49
|
||||
pkgrel=1
|
||||
pkgdesc="free branch version of the LIO target API"
|
||||
arch=('any')
|
||||
|
@ -16,7 +16,7 @@ backup=()
|
|||
options=()
|
||||
install=
|
||||
source=(https://fedorahosted.org/releases/t/a/targetcli-fb/$_pkgname-$pkgver.tar.gz target.service)
|
||||
sha256sums=('4e7f6e002c82861271b90aea8005d84d5d0cf7c48ed1938f61583eefd7337305'
|
||||
sha256sums=('1827d036c0de760d6ce9040edb3bee85cf7bf5eb7af025e66db559646391d0f9'
|
||||
'74b9e5c11eab1781aa8b43680b429080ae800fbcdafd29626791b5426a4cdea8')
|
||||
|
||||
build() {
|
||||
|
|
|
@ -1,8 +1,7 @@
|
|||
# Contributor: Johannes Dewender arch at JonnyJD dot net
|
||||
pkgname=targetcli-fb
|
||||
pkgver=2.1.fb35
|
||||
pkgver=2.1.fb36
|
||||
pkgrel=1
|
||||
epoch=
|
||||
pkgdesc="free branch of the targetcli LIO administration shell (iSCSI + Co)"
|
||||
arch=('any')
|
||||
url="https://github.com/agrover/targetcli-fb"
|
||||
|
@ -17,7 +16,6 @@ backup=()
|
|||
options=()
|
||||
install=
|
||||
source=(https://fedorahosted.org/releases/t/a/targetcli-fb/$pkgname-$pkgver.tar.gz)
|
||||
md5sums=('4d662f860755dacbf0371db93ed73ada')
|
||||
|
||||
|
||||
build() {
|
||||
|
@ -34,3 +32,4 @@ package() {
|
|||
}
|
||||
|
||||
# vim:set ts=2 sw=2 et:
|
||||
sha256sums=('6fce7c702c7b121ee900cfacef77234bad012cd97f9b256852f179afe29974aa')
|
||||
|
|
Loading…
Reference in a new issue