void-packages/srcpkgs/adobe-flash-plugin/template
Juan RP 85cc462e1d Major infrastructure changes, part 2.
* Moved helpers, common and triggers dirs into xbps-src, where
  they belong.
* Renamed the templates dir to srcpkgs, it was so redundant before.
* Make it possible to add subpkgs with no restriction in names, for
  example udev now has a subpkgs called "libgudev". Previously
  subpkgs were named "${sourcepkg}-${pkgname}".
* xbps-src: changed to look for template files in current directory.
  That means that most arguments from the targets have been removed.
* xbps-src: added a reinstall target, to remove + install.
* xbps-src: do not overwrite binpkgs by default, skip them.

And more that I forgot because it's a mega-commit that I've been
working for some days already...

--HG--
extra : convert_revision : 0f466878584d1e6895d2a234f07ea1b2d1e61b3e
2009-11-22 08:31:44 +01:00

53 lines
1.9 KiB
Plaintext

# Template file for 'adobe-flash-plugin'
pkgname=adobe-flash-plugin
version=10.1beta
revision=1
# The EULA file
_eula="http://www.adobe.com/products/eulas/pdfs/Reader_Player_WWEULA-Combined-20060724_1430.pdf"
_eulacksum=986c3ddacfee18946fbef7b76485922f8f36e61f790776ce82a87afff3008427
if [ "$xbps_machine" = "x86_64" ]; then
# FIXME: not yet updated, update ${_disttarball} and add missing
# ${_distcksum} if fixing for x86_64.
_disttarball="http://download.macromedia.com/pub/labs/flashplayer10"
_disttarball="${_disttarball}/libflashplayer-${version}.linux-x86_64.so.tar.gz"
else
_disttarball="http://download.macromedia.com/pub/labs/flashplayer10"
_disttarball="${_disttarball}/flashplayer10_1_p1_linux_111709.tar.gz"
_distcksum="b63cf3b98370c4ead94ad9ce81697c4f288bddd29118e47455f36446b3239b70"
fi
distfiles="${_eula} ${_disttarball}"
checksum="${_eulacksum} ${_distcksum}"
noextract=yes
build_style=custom-install
short_desc="Adobe Flash Player plugin"
maintainer="Juan RP <xtraeme@gmail.com>"
long_desc="
This is the Adobe Flash Player plugin for Netscape compatible browsers."
# Direct requirements as per objdump -p.
Add_dependency run glibc
Add_dependency run libstdc++
Add_dependency full libX11
Add_dependency full libXext
Add_dependency full libXt
Add_dependency full freetype
Add_dependency full fontconfig
Add_dependency full gtk+
Add_dependency full atk
Add_dependency full pango
Add_dependency full glib
Add_dependency full nspr
Add_dependency full nss
do_install()
{
cd ${wrksrc} || retuyrn 1
install -d ${DESTDIR}/usr/lib/mozilla/plugins \
${DESTDIR}/usr/share/doc/${pkgname} || return 1
tar xfz "${XBPS_SRCDISTDIR}/$(basename ${_disttarball})" || return 1
install -m755 install_flash_player_10_linux/libflashplayer.so \
${DESTDIR}/usr/lib/mozilla/plugins || return 1
install -m644 "${XBPS_SRCDISTDIR}/$(basename ${_eula})" \
${DESTDIR}/usr/share/doc/${pkgname} || return 1
}