You are not logged in.
Shutter (http://aur.archlinux.org/packages.php?ID=24443) has been flagged out-of-date on Fri, 26 Mar 2010
I email tdy, the maintainer, on 03 Apr 2010 to notify him this. And I haven't gotten his reply.
So, can I adopt this package? Or shall I just wait for his reply? Thanks :-)
PKGBUILD:
# Maintainer: TDY <tdy[at]gmx[dot]com>
# Contributor: Garrett <garrett16[at]hotmail[dot]it>
pkgname=shutter
pkgver=0.86.1
pkgrel=1
pkgdesc="A featureful screenshot tool (formerly gscrot)"
arch=('i686' 'x86_64')
url="http://shutter-project.org/"
license=('GPL3')
depends=('gconf-perl' 'imagemagick' 'libxml-perl' 'perl-gnome2-wnck'
'perl-goo-canvas' 'perl-gtk2-imageview' 'perl-locale-gettext'
'perl-net-dbus' 'perl-www-mechanize' 'perl-x11-protocol'
'perl-xml-simple' 'perl-libwww>=5.827')
optdepends=('gnome-web-photo: web screenshot support')
install=$pkgname.install
source=(http://$pkgname-project.org/wp-content/uploads/releases/tars/$pkgname-$pkgver.tar.gz)
md5sums=('8aedb68042337c8cc2ed46d7bf8d3b03')
build() {
cd "$srcdir/$pkgname-$pkgver"
install -Dm755 bin/$pkgname "$pkgdir/usr/bin/$pkgname"
cp -r share "$pkgdir/usr/"
find "$pkgdir/usr/share" -type d -exec chmod 755 '{}' \;
find "$pkgdir/usr/share" -type f -exec chmod 644 '{}' \;
find "$pkgdir" -path '*plugins*' -type f ! -name '*.*' -exec chmod 755 '{}' \;
}shutter.install
post_install() {
gtk-update-icon-cache /usr/share/icons/hicolor
}
post_upgrade() {
post_install
}
post_remove() {
post_install
}Last edited by timefairy (2010-04-24 03:42:19)
Offline
Please adopt.
Offline
Thanks Arkham for the adoption :-)
Offline
I changed the depends according to here, and modified the PKGBUILD again.
# Maintainer: Arkham <arkham at archlinux dot us>
# Contributor: TDY <tdy@gmx.com>
# Contributor: Garrett <garrett16@hotmail.it>
pkgname=shutter
pkgver=0.86.1
pkgrel=2
pkgdesc="A featureful screenshot tool (formerly gscrot)"
arch=('i686' 'x86_64')
url="http://shutter-project.org/"
license=('GPL3')
depends=('gtk2-perl' 'perl-gtk2-imageview' 'glib-perl' 'gnome-perl'
'gnome-vfs-perl' 'perl-gnome2-wnck' 'gconf-perl' 'perl-locale-gettext'
'perl-xml-simple' 'perl-www-mechanize' 'perl-libwww' 'perl-net-dbus'
'imagemagick' 'perl-x11-protocol' 'librsvg' 'xdg-utils' 'perl-goo-canvas')
#perlmagick: imagemagick already applied the perl patch
optdepends=('perl-gtk2-trayicon: needed only if you are using a gtk2 version lower than 2.10.x'
'gnome-web-photo: screenshots of websites support'
# 'perl-goo-canvas: drawing tool support'
'nautilus-sendto: send to support')
source=(http://$pkgname-project.org/wp-content/uploads/releases/tars/$pkgname-$pkgver.tar.gz)
md5sums=('8aedb68042337c8cc2ed46d7bf8d3b03')
build() {
cd "$srcdir/$pkgname-$pkgver"
install -Dm755 bin/$pkgname "$pkgdir/usr/bin/$pkgname"
cp -r share "$pkgdir/usr/"
find "$pkgdir/usr/share" -type d -exec chmod 755 '{}' \;
find "$pkgdir/usr/share" -type f -exec chmod 644 '{}' \;
find "$pkgdir" -path '*plugins*' -type f ! -name '*.*' -exec chmod 755 '{}' \;
}Offline