spring cleaning

This commit is contained in:
Kevin Mihelich 2013-04-08 22:12:12 +00:00
parent df0248c6d2
commit ef150b7548
6 changed files with 0 additions and 196 deletions

View file

@ -1,32 +0,0 @@
# Maintainer: Andries Radu <admiral0 AT tuxfamily.org>
plugrel=1
pkgname=ofono-git
pkgver=1.12.195.ga36ffa8
pkgver() {
cd "$srcdir/ofono"
git describe --tags | sed 's/-/./g'
}
epoch=1
pkgrel=1
pkgdesc="A high-level D-Bus API for use by telephony applications of any license."
arch=('arm' 'i686' 'x86_64')
url="http://www.freesmartphone.org"
license=('GPL')
depends=('glib2' 'dbus' 'bluez' 'mobile-broadband-provider-info')
makedepends=('git')
source=("git://git.kernel.org/pub/scm/network/ofono/ofono.git")
md5sums=('SKIP')
_gitname="ofono"
build() {
cd "$srcdir/ofono"
./bootstrap
./configure --prefix=/usr
make
}
package(){
cd "$srcdir/ofono"
make DESTDIR="$pkgdir" install
}

View file

@ -1,42 +0,0 @@
plugrel=1
pkgname=plugui-git
pkgver=2.4a6f7cf
pkgver() {
cd "$srcdir/PlugUI"
echo $(git rev-list --count makepkg).$(git rev-parse --short makepkg)
}
epoch=1
pkgrel=1
pkgdesc="Arch Linux ARM web interface"
arch=('arm')
url="https://github.com/archlinuxarm/PlugUI"
license=('GPL')
depends=('python2' 'python2-cherrypy' 'python2-django' 'python2-pytz')
makedepends=('git')
provides=('plugui')
conflicts=('plugui')
install=plugui.install
source=("git://github.com/archlinuxarm/PlugUI.git#commit=4a6f7cf4")
md5sums=('SKIP')
_gitname="PlugUI"
package() {
cd $srcdir/${_gitname}
# create directory structure
install -d $pkgdir/opt/PlugUI
install -d $pkgdir/var/run/PlugUI
install -d $pkgdir/var/lib/PlugUI
install -d $pkgdir/etc/cron.hourly
install -d $pkgdir/etc/rc.d
# copy everything
cp -dpr --no-preserve=ownership * $pkgdir/opt/PlugUI
# install cron and rc.d scripts
chmod +x $pkgdir/opt/PlugUI/plugmaintenance.py $pkgdir/opt/PlugUI/plugui.cherrypy
ln -s /opt/PlugUI/plugmaintenance.py $pkgdir/etc/cron.hourly/plugmaintenance
ln -s /opt/PlugUI/plugui.cherrypy $pkgdir/etc/rc.d/plugui
}

View file

@ -1,20 +0,0 @@
plugui_setup() {
echo "Synchronizing database.."
python2 /opt/PlugUI/manage.py syncdb --noinput
echo "Running maintenance system.."
/opt/PlugUI/plugmaintenance.py > /dev/null 2>&1
}
post_install() {
plugui_setup
echo ""
echo "To start PlugUI type: /etc/rc.d/plugui start"
echo ""
echo "Add 'plugui' to the end of the DAEMONS list in /etc/rc.conf to start on boot."
}
post_upgrade() {
plugui_setup
}

View file

@ -1,43 +0,0 @@
# TI Connectivity OMAP4 Firmware package
# This provides the proper firmware for the wl12xx TI WiFi driver used on the PandaBoard
# Maintainer: Kevin Mihelich <kevin@archlinuxarm.org>
buildarch=4
pkgname=ti-connectivity
pkgver=20121031
pkgrel=1
pkgdesc="TI Connectivity OMAP4 Firmware for wl12xx"
arch=('arm')
url="git://git.kernel.org/pub/scm/linux/kernel/git/dwmw2/linux-firmware.git"
license=('GPL')
makedepends=('git')
_gitroot="git://git.kernel.org/pub/scm/linux/kernel/git/dwmw2/linux-firmware.git"
_gitname="linux-firmware"
build() {
cd $srcdir
## Git checkout
if [ -d $srcdir/${_gitname} ] ; then
msg "Git checkout: Updating existing tree"
cd ${_gitname} && git pull
msg "Git checkout: Tree has been updated"
else
msg "Git checkout: Retrieving sources"
git clone --depth 1 ${_gitroot}
fi
msg "Checkout completed"
}
package() {
cd $srcdir/${_gitname}
# create directory structure
install -d $pkgdir/lib/firmware/ti-connectivity
# copy everything
cp ti-connectivity/* $pkgdir/lib/firmware/ti-connectivity
}

View file

@ -1,22 +0,0 @@
# Maintainer: Florian Léger <florian6 dot leger at laposte dot net>
plugrel=1
pkgname=pyrss2gen
pkgver=1.0.0
pkgrel=3
pkgdesc="A Python library for generating RSS 2.0 feeds."
arch=('any')
url='http://www.dalkescientific.com/Python/PyRSS2Gen.html'
license=('BSD')
depends=('python2')
makedepends=('python2-distribute')
source=("http://www.dalkescientific.com/Python/PyRSS2Gen-${pkgver}.tar.gz")
md5sums=('b37ed0c9cfa4438a73dbbb0207f3aff6')
build() {
cd "$srcdir/PyRSS2Gen-$pkgver"
install -Dm644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
python2 setup.py install --root="$pkgdir" || return 1
}

View file

@ -1,37 +0,0 @@
# Maintainer: Kai Uwe Jesussek <kajot@gmx.net>
plugrel=1
_gitname="Samen"
pkgname=samen-git
pkgver=6.1e5081b
pkgver(){
cd $srcdir/$_gitname
echo $(git rev-list --count master).$(git rev-parse --short master)
}
epoch=1
pkgrel=1
pkgdesc="An ultra small wpa_supplicant (wpa_cli) action handler."
url="https://github.com/kimperator/Samen/wiki"
arch=('arm' 'i686' 'x86_64')
license=('GPL')
provides=('samen')
makedepends=('git' 'cmake')
depends=('wpa_supplicant')
source=("git://github.com/kimperator/Samen.git")
prepare(){
if [[ ! -d $srcdir/build ]]; then
mkdir build
fi
}
build() {
cd build
cmake $srcdir/$_gitname
make
}
package(){
cd build
make DESTDIR=${pkgdir} install
cp -dpr --no-preserve=ownership $srcdir/$_gitname/additions/arch/etc ${pkgdir}
}
md5sums=('SKIP')