unicode-data-6.1.0.ebuild 546 B

1234567891011121314151617181920212223242526272829
  1. # Copyright 1999-2013 Gentoo Foundation
  2. # Distributed under the terms of the GNU General Public License v2
  3. EAPI=5
  4. DESCRIPTION="Unicode data from unicode.org"
  5. HOMEPAGE="http://unicode.org/"
  6. SRC_URI="mirror://debian/pool/main/u/${PN}/${PN}_${PV}.orig.tar.gz"
  7. LICENSE="unicode"
  8. SLOT="0"
  9. KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 s390 sh sparc x86 ~amd64-fbsd ~x86-fbsd"
  10. IUSE=""
  11. DEPEND="app-arch/unzip"
  12. RDEPEND=""
  13. src_unpack() {
  14. unpack ${A}
  15. cd "${S}"
  16. unpack ./*
  17. rm *.zip
  18. }
  19. src_install() {
  20. insinto /usr/share/${PN}
  21. doins -r "${S}"/*
  22. }