Initial commit

This commit is contained in:
Anton Leontiev 2013-08-23 16:58:29 +04:00
commit 330878dd7b
3 changed files with 40 additions and 0 deletions

13
.SRCINFO Normal file
View file

@ -0,0 +1,13 @@
pkgbase = cmake-usedoxygen
pkgdesc = CMake module to add Doxygen rule into Makefile
pkgver = 1.3.3
pkgrel = 1
url = http://tobias.rautenkranz.ch/cmake/doxygen/
arch = any
license = BSD
depends = cmake
source = http://tobias.rautenkranz.ch/cmake/doxygen/releases/UseDoxygen-1.3.3.tar.gz
md5sums = 696423a0fb4438ffd88c209f67b41690
pkgname = cmake-usedoxygen

6
.gitignore vendored Normal file
View file

@ -0,0 +1,6 @@
*.tar.gz
*.tar.bz2
*.tar.xz
*.tar.lz
src/
pkg/

21
PKGBUILD Normal file
View file

@ -0,0 +1,21 @@
# Contributor: Anton Leontiev <bunder /at/ t-25.ru>
pkgname=cmake-usedoxygen
pkgver=1.3.3
pkgrel=1
pkgdesc="CMake module to add Doxygen rule into Makefile"
arch=("any")
url="http://tobias.rautenkranz.ch/cmake/doxygen/"
license=("BSD")
source=(http://tobias.rautenkranz.ch/cmake/doxygen/releases/UseDoxygen-$pkgver.tar.gz)
depends=("cmake")
md5sums=('696423a0fb4438ffd88c209f67b41690')
build() {
cd "$srcdir/UseDoxygen"
cmake .
}
package() {
cd "$srcdir/UseDoxygen"
make DESTDIR="$pkgdir" install
}