mirror of
https://github.com/archlinux/aur.git
synced 2026-03-05 05:42:21 +01:00
Flatten directory structure
This commit is contained in:
commit
ff5b7630d0
2 changed files with 53 additions and 0 deletions
21
.SRCINFO
Normal file
21
.SRCINFO
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
pkgbase = compizconfig-backend-kconfig4
|
||||
pkgdesc = Compizconfig backend for kconfig4
|
||||
pkgver = 0.8.8
|
||||
pkgrel = 1
|
||||
url = http://www.compiz.org/
|
||||
arch = i686
|
||||
arch = x86_64
|
||||
groups = compiz-fusion-kde
|
||||
groups = compiz-fusion
|
||||
license = GPL2
|
||||
makedepends = cmake
|
||||
makedepends = automoc4
|
||||
depends = libcompizconfig
|
||||
depends = kdelibs
|
||||
depends = libxcomposite
|
||||
depends = libxinerama
|
||||
source = http://releases.compiz.org/0.8.8/compizconfig-backend-kconfig4-0.8.8.tar.bz2
|
||||
sha1sums = d7a29339b47233ad53fe04ca0136fdb511b945ac
|
||||
|
||||
pkgname = compizconfig-backend-kconfig4
|
||||
|
||||
32
PKGBUILD
Normal file
32
PKGBUILD
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
# Maintainer: Florian Dejonckheere <florian@floriandejonckheere.be>
|
||||
# Contributor: Ronald van Haren <ronald.archlinux.org>
|
||||
# Contributor: Andrea Scarpino <andrea@archlinux.org>
|
||||
|
||||
pkgname=compizconfig-backend-kconfig4
|
||||
pkgver=0.8.8
|
||||
pkgrel=1
|
||||
pkgdesc="Compizconfig backend for kconfig4"
|
||||
arch=('i686' 'x86_64')
|
||||
url="http://www.compiz.org/"
|
||||
license=('GPL2')
|
||||
depends=('libcompizconfig' 'kdelibs' 'libxcomposite' 'libxinerama')
|
||||
makedepends=('cmake' 'automoc4')
|
||||
groups=('compiz-fusion-kde' 'compiz-fusion')
|
||||
source=("http://releases.compiz.org/${pkgver}/${pkgname}-${pkgver}.tar.bz2")
|
||||
sha1sums=('d7a29339b47233ad53fe04ca0136fdb511b945ac')
|
||||
|
||||
build()
|
||||
{
|
||||
cd "${srcdir}"
|
||||
mkdir build
|
||||
cd build
|
||||
cmake "../${pkgname}-${pkgver}" \
|
||||
-DCMAKE_BUILD_TYPE=Release \
|
||||
-DCMAKE_INSTALL_PREFIX=/usr
|
||||
make
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "${srcdir}/build"
|
||||
make DESTDIR="${pkgdir}" install
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue