forked from archlinux/svntogit-packages
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
archrelease: copy trunk to staging-any
git-svn-id: file:///srv/repos/svn-packages/svn@284846 eb2447ed-0c53-47e4-bac8-5bc4a241df78
- Loading branch information
1 parent
57c0292
commit e751067
Showing
1 changed file
with
41 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
# $Id$ | ||
# Maintainer: Jan de Groot <[email protected]> | ||
# Contributor: Steve Holmes <[email protected]> | ||
# Contributor: Giulio Bai <[email protected]> | ||
|
||
pkgname=accerciser | ||
pkgver=3.22.0 | ||
pkgrel=2 | ||
pkgdesc="Interactive Python accessibility explorer for the GNOME desktop" | ||
arch=(any) | ||
url="https://wiki.gnome.org/Apps/Accerciser" | ||
license=(BSD) | ||
depends=(python gtk3 python-atspi ipython libwnck3 python-cairo) | ||
makedepends=(itstool docbook-xsl intltool gnome-common git) | ||
groups=(gnome-extra) | ||
_commit=e271fc21ca45edc5c030cd3c0397ff39373ea37e # tags/3.22.0^0 | ||
source=("git://git.gnome.org/accerciser#commit=$_commit") | ||
sha256sums=('SKIP') | ||
|
||
pkgver() { | ||
cd $pkgname | ||
git describe --tags | sed 's/-/+/g' | ||
} | ||
|
||
prepare() { | ||
cd $pkgname | ||
NOCONFIGURE=1 ./autogen.sh | ||
} | ||
|
||
build() { | ||
cd $pkgname | ||
./configure --prefix=/usr --sysconfdir=/etc --disable-schemas-compile | ||
make | ||
} | ||
|
||
package() { | ||
cd $pkgname | ||
make DESTDIR="$pkgdir" install | ||
install -m 755 -d "$pkgdir"/usr/share/licenses/$pkgname | ||
install -m 644 COPYING "$pkgdir"/usr/share/licenses/$pkgname | ||
} |