Commit 59452955 authored by Seblu's avatar Seblu
Browse files

remove disowned packages


git-svn-id: https://seblu.net/s/archpkg@220 02741741-5192-46b8-8916-7152b19231d9
parent 262eeca9
Loading
Loading
Loading
Loading

docbucket/PKGBUILD

deleted100644 → 0
+0 −21
Original line number Diff line number Diff line
# Maintainer: Sébastien Luttringer <seblu@aur.archlinux.org>

pkgname=docbucket
pkgver=0.1
pkgrel=1
pkgdesc='A simple document manager for individuals written with Django'
arch=('any')
url='http://idevelop.org/p/docbucket'
license=('GPL3')
depends=('django' 'python-imaging' 'python-whoosh' 'python-pymongo' 'cuneiform' 'ghostscript' 'exactimage-svn')
source=(
  "http://pypi.python.org/packages/source/d/$pkgname/$pkgname-$pkgver.tar.gz"
   ) 
md5sums=('4a342d900064fecfcae21f651a9e8851')

package() {
  cd $pkgname-$pkgver
  python2 setup.py install --root="$pkgdir"
}

# vim:set ts=2 sw=2 ft=sh et:

dotconf/PKGBUILD

deleted100644 → 0
+0 −21
Original line number Diff line number Diff line
# Maintainer: Sébastien Luttringer <seblu@aur.archlinux.org>

pkgname=python2-dotconf
pkgver=0.2
pkgrel=1
pkgdesc='Advanced configuration parser for Python'
arch=('any')
url='http://pypi.python.org/pypi/dotconf/'
license=('custom: MIT')
depends=('python2' 'python2-ply')
source=(
  "http://pypi.python.org/packages/source/d/dotconf/dotconf-$pkgver.tar.gz"
   ) 
md5sums=('9fb08b8cb60a7f651562b69d30505439')

package() {
  cd dotconf-$pkgver
  python2 setup.py install --root="$pkgdir" --optimize=1
}

# vim:set ts=2 sw=2 ft=sh et:

kcm_touchpad/PKGBUILD

deleted100644 → 0
+0 −28
Original line number Diff line number Diff line
# Maintainer: Sébastien Luttringer <seblu@aur.archlinux.org>
# Contributor: Andrea Scarpino <andrea@archlinux.org>
# Contributor: Dylon Edwards <deltaecho@archlinux.us>
pkgname=kcm_touchpad
pkgver=0.3.1
pkgrel=4
url='http://www.kde-apps.org/content/show.php/kcm_touchpad?content=113335'
pkgdesc='Synaptics driver based touchpads kcontrol module'
license=('GPL2')
arch=('i686' 'x86_64')
depends=('xf86-input-synaptics' 'kdelibs')
makedepends=('cmake' 'automoc4')
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/mishaaq/${pkgname}/tarball/${pkgname}-${pkgver}")
md5sums=('f355a658d2e9267fdf4e8d8f88038bcf')

build(){	
  cd mishaaq-${pkgname}-00370b5
  cmake -DCMAKE_INSTALL_PREFIX=$(kde4-config --prefix) -DCMAKE_BUILD_TYPE=Release
  sed -r -i 's/(X-KDE-System-Settings-Parent-Category=).*/\1input-devices/' touchpad.desktop
  make
}

package() { 
  cd mishaaq-${pkgname}-00370b5
  make DESTDIR="${pkgdir}" install
}

# vim:set ts=2 sw=2 ft=sh et:

kiconedit/PKGBUILD

deleted100644 → 0
+0 −35
Original line number Diff line number Diff line
#Maintainer: Sebastien Luttringer <seblu+arch@seblu.net>
#Contributor: Andrea Scarpino <andrea@archlinux.org>
#Contributor: Pierre Schmitz <pierre@archlinux.de>

pkgname=kiconedit
pkgver=4.4.0
pkgrel=1
pkgdesc='KDE Icon Editor'
arch=('i686' 'x86_64')
url='http://www.kde.org/applications/graphics/kiconedit'
license=('GPL2')
depends=('kdebase-runtime')
makedepends=('pkgconfig' 'cmake' 'automoc4')
install='install'
source=("ftp://ftp.kde.org/pub/kde/stable/extragear/$pkgname-$pkgver.tar.bz2")
md5sums=('f2db6aff093cea2fcefceb3eb02a94c3')

build() {
  # fix compilation handbook issue
  sed -i '/add_subdirectory( hu_kiconedit\/kiconedit )/d' \
    "$pkgname-$pkgver/doc-translations/CMakeLists.txt"
  mkdir build || true
  cd build
  cmake "../$pkgname-$pkgver" \
    -DCMAKE_BUILD_TYPE=Release \
    -DCMAKE_INSTALL_PREFIX=/usr
  make
}

package() {
  cd build
  make DESTDIR="$pkgdir" install
}

# vim:set ts=2 sw=2 ft=sh et:

kiconedit/install

deleted100644 → 0
+0 −11
Original line number Diff line number Diff line
post_install() {
	xdg-icon-resource forceupdate --theme hicolor &> /dev/null
}

post_upgrade() {
	post_install
}

post_remove() {
	post_install
}
Loading