blob: 9603a9d62a24e14373fb7fc99a27eb9c2c8126c7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
pkgname=linhes-templates
pkgver=9.0.0
pkgrel=14
conflicts=()
pkgdesc="Templates used for LinHES system configuration"
depends=()
makedepends=()
arch=('x86_64')
source=(templates.tar.gz)
sha256sums=('0ec3715a4b44e5c2c748fc0c4bdf2e8773d09d00594fc1f21d9aaa2439a7e509')
package() {
MVDIR=$pkgdir/usr/share/linhes
mkdir -p $MVDIR
cp -r $srcdir/templates $MVDIR
chmod -R 0755 $MVDIR
find $MVDIR -type f -perm 0755 -exec chmod 0644 {} +
}
|