mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
27 lines
719 B
Bash
27 lines
719 B
Bash
# Support packages for Desktop
|
|
|
|
pkgname=chemical-mime-data
|
|
pkgver=0.1.94
|
|
pkgrel=1
|
|
pkgdesc="Collection of data files to add support for various chemical MIME types"
|
|
arch=('any')
|
|
url="http://chemical-mime.sourceforge.net/"
|
|
license=('LGPL')
|
|
depends=('xdg-utils' 'shared-mime-info' 'hicolor-icon-theme')
|
|
makedepends=('intltool' 'libxslt' 'imagemagick' 'gnome-mime-data' 'librsvg')
|
|
install=$pkgname.install
|
|
source=("http://downloads.sourceforge.net/chemical-mime/${pkgname}-${pkgver}.tar.gz")
|
|
md5sums=('ca54b5fbd7f43ee5380e394bfd273b95')
|
|
|
|
build() {
|
|
cd $pkgname-$pkgver
|
|
./configure --prefix=/usr \
|
|
--disable-update-database
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd $pkgname-$pkgver
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|