summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Husmann2016-06-07 00:09:48 +0200
committerStefan Husmann2016-06-07 00:09:48 +0200
commit9af914424c28e84b49e2adc7c90d1bd0ec35c3da (patch)
tree5ad874fd38586d4b33b85d98eda5379c775fc1d8
parent7dc7f14f7bd2e822f41e24dacd724f2575465c6a (diff)
downloadaur-9af914424c28e84b49e2adc7c90d1bd0ec35c3da.tar.gz
fix paths in several config files
-rw-r--r--.SRCINFO5
-rw-r--r--PKGBUILD3
-rw-r--r--librep.install18
3 files changed, 3 insertions, 23 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 44031d717922..f0a2f55f265d 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,11 +1,10 @@
# Generated by mksrcinfo v8
-# Thu May 26 19:29:57 UTC 2016
+# Mon Jun 6 22:09:02 UTC 2016
pkgbase = librep-git
pkgdesc = A lisp system for sawfish - git version.
pkgver = 0.92.6
- pkgrel = 1
+ pkgrel = 2
url = http://sawfish.wikia.com
- install = librep.install
arch = i686
arch = x86_64
license = GPL
diff --git a/PKGBUILD b/PKGBUILD
index 095db7f2de3a..374ab6534631 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -3,7 +3,7 @@
pkgname=librep-git
pkgver=0.92.6
-pkgrel=1
+pkgrel=2
pkgdesc='A lisp system for sawfish - git version.'
arch=('i686' 'x86_64')
url='http://sawfish.wikia.com'
@@ -13,7 +13,6 @@ makedepends=('git')
provides=("librep=$pkgver")
conflicts=('librep')
options=('!libtool' '!makeflags')
-install=librep.install
source=('git://github.com/SawfishWM/librep.git')
sha256sums=('SKIP')
_gitname='librep'
diff --git a/librep.install b/librep.install
deleted file mode 100644
index 17f4e41bc5c8..000000000000
--- a/librep.install
+++ /dev/null
@@ -1,18 +0,0 @@
-info_dir=/usr/share/info
-info_files=(librep.info.gz)
-
-post_install() {
- for f in ${info_files[@]}; do
- install-info ${info_dir}/$f ${info_dir}/dir 2> /dev/null
- done
-}
-
-post_upgrade() {
- post_install $1
-}
-
-pre_remove() {
- for f in ${info_files[@]}; do
- install-info --delete ${info_dir}/$f ${info_dir}/dir 2> /dev/null
- done
-}