1 /* opkg_defines.h - the opkg package management system 2 3 Copyright (C) 2008 OpenMoko Inc 4 5 This program is free software; you can redistribute it and/or 6 modify it under the terms of the GNU General Public License as 7 published by the Free Software Foundation; either version 2, or (at 8 your option) any later version. 9 10 This program is distributed in the hope that it will be useful, but 11 WITHOUT ANY WARRANTY; without even the implied warranty of 12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 13 General Public License for more details. 14 */ 15 16 #ifndef OPKG_DEFINES_H 17 #define OPKG_DEFINES_H 18 19 #define OPKG_PKG_EXTENSION ".opk" 20 #define IPKG_PKG_EXTENSION ".ipk" 21 #define DPKG_PKG_EXTENSION ".deb" 22 23 #define OPKG_LEGAL_PKG_NAME_CHARS "abcdefghijklmnopqrstuvwxyz0123456789.+-" 24 #define OPKG_PKG_VERSION_SEP_CHAR '_' 25 26 #define OPKG_STATE_DIR_PREFIX OPKGLIBDIR"/opkg" 27 #define OPKG_LISTS_DIR_SUFFIX "lists" 28 #define OPKG_INFO_DIR_SUFFIX "info" 29 #define OPKG_STATUS_FILE_SUFFIX "status" 30 31 #define OPKG_BACKUP_SUFFIX "-opkg.backup" 32 33 #define OPKG_LIST_DESCRIPTION_LENGTH 128 34 35 #endif /* OPKG_DEFINES_H */ 36
This page was automatically generated by LXR 0.3.1. • OpenWrt