mirror of
https://github.com/archlinux/aur.git
synced 2026-03-06 03:52:31 +01:00
Initial commit
This commit is contained in:
commit
330878dd7b
3 changed files with 40 additions and 0 deletions
13
.SRCINFO
Normal file
13
.SRCINFO
Normal 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
6
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
*.tar.gz
|
||||
*.tar.bz2
|
||||
*.tar.xz
|
||||
*.tar.lz
|
||||
src/
|
||||
pkg/
|
||||
21
PKGBUILD
Normal file
21
PKGBUILD
Normal 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
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue