Packaging scripts for Arch packages
This commit is contained in:
33
build/packaging/pkgbuild/PKGBUILD.in
Normal file
33
build/packaging/pkgbuild/PKGBUILD.in
Normal file
@@ -0,0 +1,33 @@
|
||||
pkgname=@BLOOM_PACKAGE_NAME_LOWER@
|
||||
pkgver=@CMAKE_PROJECT_VERSION@
|
||||
pkgrel=1
|
||||
pkgdesc="@BLOOM_PACKAGE_DESCRIPTION@"
|
||||
arch=('i686' 'x86_64')
|
||||
url="@CMAKE_PROJECT_HOMEPAGE_URL@"
|
||||
license=('LGPLv3')
|
||||
|
||||
package(){
|
||||
depends=(
|
||||
'fontconfig>=2.11.94'
|
||||
'freetype2>=2.6'
|
||||
'gcc-libs>=5'
|
||||
'glibc>=2.18'
|
||||
'libgl'
|
||||
'libglvnd'
|
||||
'libpng12'
|
||||
'libx11'
|
||||
'libxcb'
|
||||
'libxext'
|
||||
'libxkbcommon>=0.5.0'
|
||||
'libxkbcommon-x11>=0.5.0'
|
||||
'libxrender'
|
||||
'xcb-util-image>=0.2.1'
|
||||
'xcb-util-keysyms>=0.4.0'
|
||||
'xcb-util-renderutil'
|
||||
'xcb-util-wm>=0.4.1'
|
||||
'zlib>=1.1.4'
|
||||
)
|
||||
|
||||
mkdir -p "${pkgdir}/"
|
||||
cp -R @CMAKE_BINARY_DIR@/packaging/pkgbuild/playground/build_root/* "${pkgdir}/"
|
||||
}
|
||||
Reference in New Issue
Block a user