forked from archlinux/svntogit-packages
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
archrelease: copy trunk to extra-x86_64
git-svn-id: file:///srv/repos/svn-packages/svn@115989 eb2447ed-0c53-47e4-bac8-5bc4a241df78
- Loading branch information
giovanni
committed
Mar 22, 2011
1 parent
7a5f05d
commit fa7b9f7
Showing
1 changed file
with
29 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# $Id$ | ||
# Maintainer: Giovanni Scafora <[email protected]> | ||
# Contributor: Aaron Griffin <[email protected]> | ||
|
||
pkgname=asio | ||
pkgver=1.4.8 | ||
pkgrel=1 | ||
pkgdesc="Cross-platform C++ library for ASynchronous network I/O" | ||
arch=('i686' 'x86_64') | ||
url="http://asio.sourceforge.net" | ||
license=('custom') | ||
depends=('boost') | ||
source=("http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.bz2") | ||
md5sums=('bc2ca8ea37892870d194421154df122f') | ||
|
||
build() { | ||
cd "${srcdir}/${pkgname}-${pkgver}" | ||
|
||
./configure --prefix=/usr | ||
make | ||
} | ||
|
||
package() { | ||
cd "${srcdir}/${pkgname}-${pkgver}" | ||
|
||
make DESTDIR=${pkgdir} install | ||
#license | ||
install -D -m644 LICENSE_1_0.txt "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" | ||
} |