Date: Saturday, March 19, 2016 @ 16:26:06 Author: heftig Revision: 262099
8.0.0 Added: unicode-character-database/trunk/LICENSE unicode-character-database/trunk/PKGBUILD ----------+ LICENSE | 37 +++++++++++++++++++++++++++++++++++++ PKGBUILD | 29 +++++++++++++++++++++++++++++ 2 files changed, 66 insertions(+) Added: LICENSE =================================================================== --- LICENSE (rev 0) +++ LICENSE 2016-03-19 15:26:06 UTC (rev 262099) @@ -0,0 +1,37 @@ +COPYRIGHT AND PERMISSION NOTICE + +Copyright © 1991-2016 Unicode, Inc. All rights reserved. +Distributed under the Terms of Use in +http://www.unicode.org/copyright.html. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, +(b) this copyright and permission notice appear in associated +documentation, and +(c) there is clear notice in each modified Data File or in the Software +as well as in the documentation associated with the Data File(s) or +Software that the data or software has been modified. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. Added: PKGBUILD =================================================================== --- PKGBUILD (rev 0) +++ PKGBUILD 2016-03-19 15:26:06 UTC (rev 262099) @@ -0,0 +1,29 @@ +# $Id$ +# Maintainer: Jan Alexander Steffens (heftig) <[email protected]> + +pkgname=unicode-character-database +pkgver=8.0.0 +pkgrel=1 +pkgdesc="Unicode Character Database" +arch=(any) +license=(BSD) +url="http://www.unicode.org/" +source=("UCD-$pkgver.zip::http://www.unicode.org/Public/zipped/$pkgver/UCD.zip" + "Unihan-$pkgver.zip::http://www.unicode.org/Public/zipped/$pkgver/Unihan.zip" + LICENSE) +noextract=({UCD,Unihan}-$pkgver.zip) +sha256sums=('e3959c0b96c5ea7ff118254b55e1a752c2a28170b3404ba6bb5ab2c58536ce2e' + 'e02affdd082ca9365f595e5dfa3295dc9e0bf7f6aed54455d99c0a9924b88115' + 'dfc6b3430adc9e474443645fe5c55b29ecfe166434c2d5232909f4865d81ca16') + +package() { + install -d "$pkgdir/usr/share/$pkgname" + cd "$pkgdir/usr/share/$pkgname" + + for _f in UCD Unihan; do + cp "$srcdir/$_f-$pkgver.zip" $_f.zip + bsdtar -x --no-same-owner --no-same-permissions -f $_f.zip + done + + install -Dm644 "$srcdir/LICENSE" "$pkgdir/usr/share/licenses/$pkgname/LICENSE" +} Property changes on: unicode-character-database/trunk/PKGBUILD ___________________________________________________________________ Added: svn:keywords ## -0,0 +1 ## +Id \ No newline at end of property
