Cross package maker. DEB/RPM generation or conversion. Derived from jordansissel/fpm.

⌈⌋ ⎇ branch:  cross package maker


Check-in [3d2d52718e]

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:- add ldconfig template
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 3d2d52718e6ef103f634b76b1cf279c1c8497db2
User & Date: jls@semicomplete.com 2013-04-09 04:55:48
Context
2013-04-09
05:26
- read through git log v0.4.31..master and updated CHANGELIST accordingly check-in: ab0a78b3bf user: jls@semicomplete.com tags: trunk
04:55
- add ldconfig template check-in: 3d2d52718e user: jls@semicomplete.com tags: trunk
04:49
- update changelist check-in: 3790b03c9b user: jls@semicomplete.com tags: trunk
Changes
Hide Diffs Unified Diffs Ignore Whitespace Patch

Added templates/deb/ldconfig.sh.erb.



























>
>
>
>
>
>
>
>
>
>
>
>
>
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh
# This script is automatically added by fpm when you specify
# conditions that usually require running ldconfig upon
# package installation and removal.
#
# For example, if you set '--deb-shlibs' in creating your package,
# fpm will use this script if you don't provide your own --after-install or
# --after-remove
set -e

case $1 in
  configure|remove) ldconfig ;;
esac