Advertisement
Guest User

Untitled

a guest
Jan 1st, 2012
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.04 KB | None | 0 0
  1. # Contributor: John Gerritse <reaphsharc@gmail.com>
  2. pkgname=celtx-bin
  3. pkgver=2.9.1
  4. pkgrel=1
  5. pkgdesc="Celtx is the world's first fully integrated solution for media pre-production and collaboration. (binary version)"
  6. arch=(i686)
  7. url="http://celtx.com/"
  8. license=('CePL')
  9. depends=()
  10. options=('!strip')
  11. conflicts=('celtx')
  12. source=(http://download.celtx.com/${pkgver}/Celtx-${pkgver}.tar.bz2 'CePL-1.3.txt' 'celtx.desktop')
  13. md5sums=('5721d9d099100e5a16c564ba0e3973f3'
  14.          '998912d308020615adb0bcf22b845970'
  15.          'c64e4173b5af998ffa158d3c085b996e')
  16.  
  17. build() {
  18.   # Copy binaries
  19.   cd "${srcdir}/celtx"
  20.   mkdir -p ${pkgdir}/opt/celtx
  21.   cp -a ${srcdir}/celtx/* ${pkgdir}/opt/celtx/
  22.   chmod a+x ${pkgdir}/opt/celtx/celtx
  23.   chmod a+x ${pkgdir}/opt/celtx/celtx-bin
  24.  
  25.   # Install extra files
  26.   install -D -m644 "${srcdir}/CePL-1.3.txt" "${pkgdir}/usr/share/licenses/${pkgname}/license.txt" || return 1
  27.   install -D -m644 "${srcdir}/celtx.desktop" "${pkgdir}/usr/share/applications/celtx.desktop" || return 1
  28. }
  29.  
  30. # vim:set ts=2 sw=2 et:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement