blob: d683ce1d4c2179a3257aa65a4752d20c44282f9c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
pkgname=mythdb-initial
pkgver=1
pkgrel=48
pkgdesc="setup the initial mythtv database for linhes"
url=""
license=""
depends=(mysql)
makedepends=()
conflicts=()
replaces=()
backup=()
install=mythdb.install
source=(mc.sql permissions.sql custom.sql)
md5sums=()
arch=('i686')
build() {
cd $startdir/src
mkdir -p $startdir/pkg/data/database
cp mc.sql $startdir/pkg/data/database/mc.sql.initial
cp permissions.sql $startdir/pkg/data/database/permissions.sql
cp custom.sql $startdir/pkg/data/database/custom.sql
}
|