summaryrefslogtreecommitdiff
path: root/pcr
diff options
context:
space:
mode:
Diffstat (limited to 'pcr')
-rw-r--r--pcr/python-evdev/PKGBUILD20
-rw-r--r--pcr/python2-shutilwhich/PKGBUILD24
-rw-r--r--pcr/ttf-font-awesome/PKGBUILD23
-rw-r--r--pcr/ttf-font-awesome/ttf-font-awesome.install20
4 files changed, 0 insertions, 87 deletions
diff --git a/pcr/python-evdev/PKGBUILD b/pcr/python-evdev/PKGBUILD
deleted file mode 100644
index 04fd9ae8b..000000000
--- a/pcr/python-evdev/PKGBUILD
+++ /dev/null
@@ -1,20 +0,0 @@
-# Maintainer: Márcio Silva <coadde@hyperbola.info>
-
-pkgname=python-evdev
-pkgver=0.6.4
-pkgrel=1
-pkgdesc="Python bindings evdev input devices"
-arch=('i686' 'x86_64' 'armv7h')
-url="http://python-evdev.readthedocs.org/"
-license=('BSD3')
-depends=('python')
-source=("https://github.com/gvalkov/$pkgname/archive/v$pkgver.tar.gz")
-sha256sums=('a84b6538885770a6e0ebefb1a65d138d485a13002452bfdd537b07f146af2bd9')
-
-package () {
- cd $pkgname-$pkgver
-
- python setup.py install --prefix=/usr --root=$pkgdir
-
- install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
diff --git a/pcr/python2-shutilwhich/PKGBUILD b/pcr/python2-shutilwhich/PKGBUILD
deleted file mode 100644
index d6013bd9d..000000000
--- a/pcr/python2-shutilwhich/PKGBUILD
+++ /dev/null
@@ -1,24 +0,0 @@
-# Maintainer: Luke R. <g4jc@openmailbox.org> GPG: rsa4096/3EAE8697
-
-pkgname=python2-shutilwhich
-pkgver=1.1.0
-pkgrel=1
-pkgdesc="shutil.which for those not using Python 3.3 yet."
-url="http://github.com/mbr/shutilwhich"
-depends=('python2' )
-makedepends=('python2' 'python2-setuptools')
-license=('PSF')
-arch=('any')
-source=(https://pypi.python.org/packages/source/s/shutilwhich/shutilwhich-$pkgver.tar.gz)
-sha512sums=('94001875c428ce1ad1c92e5f5be1ed497630ac0e2221dbb93fde8438f128f4f2663a0a13e17b94852e4813aadec694fa21c24f647500e8053c89ec610eb7fe21')
-
-build() {
- cd $srcdir/shutilwhich-$pkgver
- python2 setup.py build
-}
-
-package() {
- cd $srcdir/shutilwhich-$pkgver
- python2 setup.py install --root="$pkgdir" --optimize=1
- chmod 644 $pkgdir/usr/lib/python2.7/site-packages/shutilwhich-1.1.0-py2.7.egg-info/PKG-INFO
-}
diff --git a/pcr/ttf-font-awesome/PKGBUILD b/pcr/ttf-font-awesome/PKGBUILD
deleted file mode 100644
index e876300fd..000000000
--- a/pcr/ttf-font-awesome/PKGBUILD
+++ /dev/null
@@ -1,23 +0,0 @@
-# Maintainer (Arch): Morten Linderud <morten@linderud.pw>
-# Contributor (Arch): Alad Wenter <https://wiki.archlinux.org/index.php/Special:EmailUser/Alad>
-# Maintainer: Omar Vega Ramos <ovruni@gnu.org.pe>
-
-pkgname=ttf-font-awesome
-pkgver=4.7.0
-pkgrel=1
-
-pkgdesc="Iconic font designed for Bootstrap"
-url="http://fortawesome.github.io/Font-Awesome/"
-license=('CCPL')
-
-depends=('fontconfig' 'xorg-font-utils')
-arch=('any')
-source=("https://github.com/FortAwesome/Font-Awesome/archive/v$pkgver.tar.gz")
-sha256sums=('de512ba0e1dead382bbfce372cde74b3f18971d876fffb635ee9333f0db05d43')
-install=$pkgname.install
-
-package() {
- cd Font-Awesome-$pkgver/fonts
- install -d "$pkgdir"/usr/share/fonts/TTF
- install -m644 *.ttf "$pkgdir"/usr/share/fonts/TTF
-}
diff --git a/pcr/ttf-font-awesome/ttf-font-awesome.install b/pcr/ttf-font-awesome/ttf-font-awesome.install
deleted file mode 100644
index da3bd53a7..000000000
--- a/pcr/ttf-font-awesome/ttf-font-awesome.install
+++ /dev/null
@@ -1,20 +0,0 @@
-post_install() {
- printf 'Updating font cache...'
- fc-cache -s > /dev/null
- mkfontscale /usr/share/fonts/TTF
- mkfontdir /usr/share/fonts/TTF
- printf 'done\n'
-}
-
-post_upgrade() {
- post_install $1
-}
-
-post_remove() {
- post_install $1
-}
-
-op=$1
-shift
-
-$op $*