blob: 67ddc5d2d268f816a3298fca6721b0795c3bf1b7 (
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=3
conflicts=( )
pkgdesc="Templates used for LinHES system configuration"
depends=()
makedepends=()
arch=('x86_64')
source=(templates.tar.gz)
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 {} +
}
sha256sums=('5d0d291f65a15c693fff982ee1818c543209e32213a8b06046054ee2418c7245')
|