mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
31 lines
882 B
Bash
31 lines
882 B
Bash
#
|
|
# Chakra Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer (i686): Phil Miller <philm[at]chakra-project[dog]org>
|
|
# maintainer (x86_64): Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
|
|
|
|
# include global config
|
|
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
|
|
|
pkgname=emovix
|
|
pkgver=0.9.0
|
|
pkgrel=5
|
|
pkgdesc="Create Movix-CD's (also emovix plugin for k3b)"
|
|
arch=(i686 x86_64)
|
|
url="http://movix.sourceforge.net/"
|
|
license=('GPL2')
|
|
depends=('perl' 'cdrtools')
|
|
options=('!makeflags')
|
|
categories=('multimedia')
|
|
source=(http://downloads.sourceforge.net/sourceforge/movix/$pkgname-$pkgver.tar.gz)
|
|
md5sums=('a96492f338824b24c5a9e714c57eddcf')
|
|
|
|
build() {
|
|
cd $srcdir/$pkgname-$pkgver
|
|
./configure --prefix=/usr || return 1
|
|
make || return 1
|
|
make DESTDIR=$pkgdir install || return 1
|
|
find $pkgdir/usr/share/emovix -type d -exec chmod 755 {} \; || return 1
|
|
}
|
|
|