mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-25 02:52:13 +08:00
27 lines
926 B
Bash
27 lines
926 B
Bash
#
|
|
# Chakra Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# contributor (x86_64): Giuseppe Calà <jiveaxe@gmail.com>
|
|
|
|
# include global config
|
|
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
|
|
|
pkgname=latex-epic
|
|
pkgver=20100113
|
|
pkgrel=2
|
|
pkgdesc="documentstyle option for 'Enhancements to Picture Environment'. (Needed to make pdf with dblatex)"
|
|
arch=(any)
|
|
url="http://tug.ctan.org/tex-archive/macros/latex/contrib/epic/"
|
|
license=('unknown')
|
|
depends=('texlive-core')
|
|
source=(http://mirror.ctan.org/macros/latex/contrib/epic/epic.sty
|
|
http://mirror.ctan.org/macros/latex/contrib/epic/misc.sty)
|
|
md5sums=('0f16087ea2bd68e01386bbe15b3b5b25'
|
|
'e7f9a3621858f0b0703e2b64aaa40cd0')
|
|
|
|
build() {
|
|
mkdir -p $pkgdir/usr/share/texmf-dist/tex/latex/epic/
|
|
install -D $srcdir/epic.sty $pkgdir/usr/share/texmf-dist/tex/latex/epic/
|
|
install -D $srcdir/misc.sty $pkgdir/usr/share/texmf-dist/tex/latex/epic/
|
|
}
|