mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 18:42:12 +08:00
30 lines
837 B
Bash
30 lines
837 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=amsn
|
|
pkgver=0.98.3
|
|
pkgrel=1
|
|
pkgdesc="MSN client written in Tcl/Tk"
|
|
arch=('i686' 'x86_64')
|
|
url="http://amsn.sourceforge.net/"
|
|
license=('GPL2')
|
|
depends=('tk' 'tls')
|
|
makedepends=('libjpeg' 'libpng' 'farsight2' 'libv4l')
|
|
optdepends=('farsight2: for video conferencing')
|
|
source=(http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}-src.tar.bz2)
|
|
md5sums=('cf184f4c786676a1a0b4b6e1411b9193')
|
|
|
|
build() {
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
|
|
./configure --prefix=/usr
|
|
make || return 1
|
|
make DESTDIR=${pkgdir} install
|
|
}
|