mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-01-07 23:24:05 +00:00
26 lines
763 B
Bash
26 lines
763 B
Bash
|
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
||
|
# Maintainer: Douglas Soares de Andrade <dsa@aur.archlinux.org>
|
||
|
# Contributor: Sven Salzwedel <sven_salzwedel@web.de>
|
||
|
|
||
|
pkgname=atk-docs
|
||
|
pkgver=1.24.0
|
||
|
pkgrel=1
|
||
|
pkgdesc="Documentation for atk to be used in devhelp"
|
||
|
arch=('i686' 'x86_64')
|
||
|
license=('GPL')
|
||
|
url="http://library.gnome.org/devel/atk/stable/"
|
||
|
source=(ftp://ftp.gnome.org/pub/gnome/sources/atk/1.24/atk-${pkgver}.tar.bz2)
|
||
|
md5sums=('fb0ee9c7f18b15b490a0168b13740a4d')
|
||
|
|
||
|
|
||
|
build () {
|
||
|
# Create destination dir
|
||
|
install -d ${startdir}/pkg/usr/share/devhelp/books/atk
|
||
|
|
||
|
# Install documentation to destination
|
||
|
install -D -m 644 ${startdir}/src/atk-${pkgver}/docs/html/* \
|
||
|
${startdir}/pkg/usr/share/devhelp/books/atk
|
||
|
}
|
||
|
|
||
|
# vim:set ts=2 sw=2 et:
|